From be911fead8b568797862ebfd41bbad32b46d42bf Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Mon, 17 Feb 2025 14:27:54 +0000 Subject: Add latest release to changelog This is only an update to the development version and does not represent a stable release. --- CHANGELOG.md | 7 ++++++- Cargo.lock | 2 +- alacritty/Cargo.toml | 2 +- alacritty_terminal/CHANGELOG.md | 6 ++++-- alacritty_terminal/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba177deb..49984568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Notable changes to the `alacritty_terminal` crate are documented in its ## 0.16.0-dev +### Fixed + +- Crash when OpenGL context resets + +## 0.15.1 + ### Changed - Error out when socket fails to create with `--daemon` @@ -17,7 +23,6 @@ Notable changes to the `alacritty_terminal` crate are documented in its ### Fixed -- Crash when OpenGL context resets - Modifiers being out of sync for fast/synthetic input on X11 - Child process creation failing while inside a deleted directory - Shifted key reported without a shift when using kitty keyboard protocol diff --git a/Cargo.lock b/Cargo.lock index 78a81e47..ad701e17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "alacritty_terminal" -version = "0.25.0-dev" +version = "0.25.1-dev" dependencies = [ "base64", "bitflags 2.6.0", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index c778d616..0d118229 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.74.0" [dependencies.alacritty_terminal] path = "../alacritty_terminal" -version = "0.25.0-dev" +version = "0.25.1-dev" [dependencies.alacritty_config_derive] path = "../alacritty_config_derive" diff --git a/alacritty_terminal/CHANGELOG.md b/alacritty_terminal/CHANGELOG.md index 1b4824fb..90f300f7 100644 --- a/alacritty_terminal/CHANGELOG.md +++ b/alacritty_terminal/CHANGELOG.md @@ -8,11 +8,13 @@ sections should follow the order `Added`, `Changed`, `Deprecated`, `Fixed` and The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## 0.25.0-dev +## 0.25.1-dev + +## 0.25.0 ### Changed -- Replaced `Options::hold` with `Options::drain_on_exit` that drains, but doesn't hold, since holding can be done outside of alacritty_terminal +- Replaced `Options::hold` with `Options::drain_on_exit` ## 0.24.2 diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 2c3de7eb..47a39fa7 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alacritty_terminal" -version = "0.25.0-dev" +version = "0.25.1-dev" authors = ["Christian Duerr ", "Joe Wilm "] license = "Apache-2.0" description = "Library for writing terminal emulators" -- cgit