aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md16
-rw-r--r--Cargo.lock2
-rw-r--r--alacritty/Cargo.toml2
-rw-r--r--alacritty_terminal/Cargo.toml2
4 files changed, 12 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e0b946a..b348b372 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,13 +30,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Deprecated config option `mouse_bindings`, use `mouse.bindings`
- The default colorscheme is now based on base16 classic dark
-### Fixed
-
-- Hyperlink preview not being shown when the terminal has exactly 2 lines
-- Crash on Windows when changing display scale factor
-- Freeze with some drivers when using GLX
-- Crash when shrinking the terminal scrolled into the history
-
### Removed
- Config option `background_opacity`, use `window.background_opacity`
@@ -44,6 +37,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Config option `mouse.url`, use the `hints` config section
- Config options `mouse.double_click` and `mouse.triple_click`
+## 0.12.2
+
+### Fixed
+
+- Hyperlink preview not being shown when the terminal has exactly 2 lines
+- Crash on Windows when changing display scale factor
+- Freeze with some drivers when using GLX
+- Crash when shrinking the terminal scrolled into the history
+
## 0.12.1
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 7fd7347e..5017ba86 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -72,7 +72,7 @@ dependencies = [
[[package]]
name = "alacritty_terminal"
-version = "0.19.1-dev"
+version = "0.19.2-dev"
dependencies = [
"alacritty_config",
"alacritty_config_derive",
diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml
index e7980c77..da39e754 100644
--- a/alacritty/Cargo.toml
+++ b/alacritty/Cargo.toml
@@ -11,7 +11,7 @@ rust-version = "1.65.0"
[dependencies.alacritty_terminal]
path = "../alacritty_terminal"
-version = "0.19.1-dev"
+version = "0.19.2-dev"
default-features = false
[dependencies.alacritty_config_derive]
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml
index 4ad17f45..5782a8fb 100644
--- a/alacritty_terminal/Cargo.toml
+++ b/alacritty_terminal/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "alacritty_terminal"
-version = "0.19.1-dev"
+version = "0.19.2-dev"
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
description = "Library for writing terminal emulators"