1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00

Alacritty version 0.14.0

This commit is contained in:
Christian Duerr 2024-10-23 01:01:23 +02:00
parent 35549130aa
commit 22a447573b
9 changed files with 17 additions and 17 deletions

View file

@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Notable changes to the `alacritty_terminal` crate are documented in its Notable changes to the `alacritty_terminal` crate are documented in its
[CHANGELOG](./alacritty_terminal/CHANGELOG.md). [CHANGELOG](./alacritty_terminal/CHANGELOG.md).
## 0.14.0-rc2 ## 0.14.0
### Packaging ### Packaging

8
Cargo.lock generated
View file

@ -32,7 +32,7 @@ dependencies = [
[[package]] [[package]]
name = "alacritty" name = "alacritty"
version = "0.14.0-rc2" version = "0.14.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"alacritty_config", "alacritty_config",
@ -69,7 +69,7 @@ dependencies = [
[[package]] [[package]]
name = "alacritty_config" name = "alacritty_config"
version = "0.2.2-rc2" version = "0.2.2"
dependencies = [ dependencies = [
"alacritty_config_derive", "alacritty_config_derive",
"log", "log",
@ -79,7 +79,7 @@ dependencies = [
[[package]] [[package]]
name = "alacritty_config_derive" name = "alacritty_config_derive"
version = "0.2.4-rc2" version = "0.2.4"
dependencies = [ dependencies = [
"alacritty_config", "alacritty_config",
"log", "log",
@ -92,7 +92,7 @@ dependencies = [
[[package]] [[package]]
name = "alacritty_terminal" name = "alacritty_terminal"
version = "0.24.1-rc2" version = "0.24.1"
dependencies = [ dependencies = [
"base64", "base64",
"bitflags 2.6.0", "bitflags 2.6.0",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "alacritty" name = "alacritty"
version = "0.14.0-rc2" version = "0.14.0"
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "A fast, cross-platform, OpenGL terminal emulator" description = "A fast, cross-platform, OpenGL terminal emulator"
@ -12,15 +12,15 @@ rust-version = "1.74.0"
[dependencies.alacritty_terminal] [dependencies.alacritty_terminal]
path = "../alacritty_terminal" path = "../alacritty_terminal"
version = "0.24.1-rc2" version = "0.24.1"
[dependencies.alacritty_config_derive] [dependencies.alacritty_config_derive]
path = "../alacritty_config_derive" path = "../alacritty_config_derive"
version = "0.2.4-rc2" version = "0.2.4"
[dependencies.alacritty_config] [dependencies.alacritty_config]
path = "../alacritty_config" path = "../alacritty_config"
version = "0.2.2-rc2" version = "0.2.2"
[dependencies] [dependencies]
ahash = { version = "0.8.6", features = ["no-rng"] } ahash = { version = "0.8.6", features = ["no-rng"] }

View file

@ -1,5 +1,5 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
<Package Name="Alacritty" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.14.0-rc2" Manufacturer="Alacritty" InstallerVersion="200"> <Package Name="Alacritty" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.14.0" Manufacturer="Alacritty" InstallerVersion="200">
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> <MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<Icon Id="AlacrittyIco" SourceFile=".\alacritty\windows\alacritty.ico" /> <Icon Id="AlacrittyIco" SourceFile=".\alacritty\windows\alacritty.ico" />
<WixVariable Id="WixUILicenseRtf" Value=".\alacritty\windows\wix\license.rtf" /> <WixVariable Id="WixUILicenseRtf" Value=".\alacritty\windows\wix\license.rtf" />

View file

@ -1,6 +1,6 @@
[package] [package]
name = "alacritty_config" name = "alacritty_config"
version = "0.2.2-rc2" version = "0.2.2"
authors = ["Christian Duerr <contact@christianduerr.com>"] authors = ["Christian Duerr <contact@christianduerr.com>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "Alacritty configuration abstractions" description = "Alacritty configuration abstractions"
@ -15,5 +15,5 @@ serde = "1.0.163"
toml = "0.8.2" toml = "0.8.2"
[dev-dependencies] [dev-dependencies]
alacritty_config_derive = { version = "0.2.4-rc2", path = "../alacritty_config_derive" } alacritty_config_derive = { version = "0.2.4", path = "../alacritty_config_derive" }
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "alacritty_config_derive" name = "alacritty_config_derive"
version = "0.2.4-rc2" version = "0.2.4"
authors = ["Christian Duerr <contact@christianduerr.com>"] authors = ["Christian Duerr <contact@christianduerr.com>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "Failure resistant deserialization derive" description = "Failure resistant deserialization derive"
@ -19,7 +19,7 @@ syn = { version = "2.0.16", features = ["derive", "parsing", "proc-macro", "prin
[dev-dependencies.alacritty_config] [dev-dependencies.alacritty_config]
path = "../alacritty_config" path = "../alacritty_config"
version = "0.2.2-rc2" version = "0.2.2"
[dev-dependencies] [dev-dependencies]
log = "0.4.11" log = "0.4.11"

View file

@ -8,7 +8,7 @@ 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/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 0.24.1-rc2 ## 0.24.1
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "alacritty_terminal" name = "alacritty_terminal"
version = "0.24.1-rc2" version = "0.24.1"
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "Library for writing terminal emulators" description = "Library for writing terminal emulators"

View file

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.14.0-rc2</string> <string>0.14.0</string>
<key>CFBundleSupportedPlatforms</key> <key>CFBundleSupportedPlatforms</key>
<array> <array>
<string>MacOSX</string> <string>MacOSX</string>