diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-01-08 15:12:08 +0100 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-01-08 16:47:29 +0100 |
commit | fe2a3c566759c9926150181006bd56cb2293ae10 (patch) | |
tree | 1c70e3403bbbe9b097db12c9118af9bd5daac595 | |
parent | 66a078c10be7ef56d4e85289a35180c0644d5e3c (diff) | |
download | alacritty-fe2a3c566759c9926150181006bd56cb2293ae10.tar.gz alacritty-fe2a3c566759c9926150181006bd56cb2293ae10.zip |
Alacritty version 0.13.1v0.13.1alacritty_terminal_v0.21.0
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 6 | ||||
-rw-r--r-- | alacritty/windows/wix/alacritty.wxs | 2 | ||||
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 | ||||
-rw-r--r-- | extra/osx/Alacritty.app/Contents/Info.plist | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c44959a..4a0e06c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The sections should follow the order `Packaging`, `Added`, `Changed`, `Fixed` an The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## 0.13.1-rc1 +## 0.13.1 ### Added @@ -32,7 +32,7 @@ dependencies = [ [[package]] name = "alacritty" -version = "0.13.1-rc1" +version = "0.13.1" dependencies = [ "ahash", "alacritty_config", @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "alacritty_terminal" -version = "0.21.0-rc1" +version = "0.21.0" dependencies = [ "base64", "bitflags 2.4.1", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index c071b310..001f0bc2 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alacritty" -version = "0.13.1-rc1" +version = "0.13.1" authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] license = "Apache-2.0" description = "A fast, cross-platform, OpenGL terminal emulator" @@ -11,7 +11,7 @@ rust-version = "1.70.0" [dependencies.alacritty_terminal] path = "../alacritty_terminal" -version = "0.21.0-rc1" +version = "0.21.0" [dependencies.alacritty_config_derive] path = "../alacritty_config_derive" @@ -19,7 +19,7 @@ version = "0.2.2" [dependencies.alacritty_config] path = "../alacritty_config" -version = "0.2.0-rc1" +version = "0.2.0" [dependencies] ahash = { version = "0.8.6", features = ["no-rng"] } diff --git a/alacritty/windows/wix/alacritty.wxs b/alacritty/windows/wix/alacritty.wxs index 71979ab1..1bef19e8 100644 --- a/alacritty/windows/wix/alacritty.wxs +++ b/alacritty/windows/wix/alacritty.wxs @@ -1,5 +1,5 @@ <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.13.1-rc1" Manufacturer="Alacritty" InstallerVersion="200"> + <Package Name="Alacritty" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.13.1" Manufacturer="Alacritty" InstallerVersion="200"> <MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> <Icon Id="AlacrittyIco" SourceFile=".\alacritty\windows\alacritty.ico" /> <WixVariable Id="WixUILicenseRtf" Value=".\alacritty\windows\wix\license.rtf" /> diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 37742c1d..5941a8b8 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alacritty_terminal" -version = "0.21.0-rc1" +version = "0.21.0" authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"] license = "Apache-2.0" description = "Library for writing terminal emulators" diff --git a/extra/osx/Alacritty.app/Contents/Info.plist b/extra/osx/Alacritty.app/Contents/Info.plist index 1b0c0faf..cb8f218f 100644 --- a/extra/osx/Alacritty.app/Contents/Info.plist +++ b/extra/osx/Alacritty.app/Contents/Info.plist @@ -15,7 +15,7 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>0.13.1-rc1</string> + <string>0.13.1</string> <key>CFBundleSupportedPlatforms</key> <array> <string>MacOSX</string> |