mirror of
https://github.com/alacritty/alacritty.git
synced 2025-04-14 17:53:03 -04:00
Add latest release to changelog
This is only an update to the development version and does not represent a stable release.
This commit is contained in:
parent
6fefa78eaf
commit
be911fead8
5 changed files with 13 additions and 6 deletions
|
@ -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
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue