diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-05-22 03:06:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 03:06:19 +0300 |
commit | f0379f2da751e81ba05bbf65ecb5e59590f39be4 (patch) | |
tree | a5381b828edf7ddecd1c06889deb5f1972052338 | |
parent | 36301e4195148d6f3b60b75f8a30f7a08e8bf2a7 (diff) | |
download | alacritty-f0379f2da751e81ba05bbf65ecb5e59590f39be4.tar.gz alacritty-f0379f2da751e81ba05bbf65ecb5e59590f39be4.zip |
Add version 0.12.1 to CHANGELOG
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 | ||||
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 95194f10..ba7b44e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Mode-specific bindings can now be bound in any mode for easier macros - `--help` output is more compact now and uses more neutral palette +## 0.12.1 + ### Fixed - Character `;` inside the `URI` in `OSC 8` sequence breaking the URI @@ -71,7 +71,7 @@ dependencies = [ [[package]] name = "alacritty_terminal" -version = "0.18.1-dev" +version = "0.19.1-dev" dependencies = [ "alacritty_config", "alacritty_config_derive", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index d8e41e78..b7ec4cc6 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.18.1-dev" +version = "0.19.1-dev" default-features = false [dependencies.alacritty_config_derive] diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index f9fa926b..5e4efd0b 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alacritty_terminal" -version = "0.18.1-dev" +version = "0.19.1-dev" authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] license = "Apache-2.0" description = "Library for writing terminal emulators" |