diff options
| author | Christian Duerr <contact@christianduerr.com> | 2025-02-17 14:27:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-17 14:27:54 +0000 |
| commit | be911fead8b568797862ebfd41bbad32b46d42bf (patch) | |
| tree | 4065b698e53dd6d4ff68ff5d6477d339f1d83a9f | |
| parent | 6fefa78eafa43f13998439cb9eaf15bc0441f004 (diff) | |
| download | r-alacritty-be911fead8b568797862ebfd41bbad32b46d42bf.tar.gz r-alacritty-be911fead8b568797862ebfd41bbad32b46d42bf.tar.bz2 r-alacritty-be911fead8b568797862ebfd41bbad32b46d42bf.zip | |
Add latest release to changelog
This is only an update to the development version and does not represent
a stable release.
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | alacritty/Cargo.toml | 2 | ||||
| -rw-r--r-- | alacritty_terminal/CHANGELOG.md | 6 | ||||
| -rw-r--r-- | 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 @@ -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 <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] license = "Apache-2.0" description = "Library for writing terminal emulators" |