summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2023-03-06 06:42:09 +0100
committerChristian Duerr <contact@christianduerr.com>2023-03-06 08:19:58 +0100
commite1bc53a7b0330733aa4914962b8adb70767fa03d (patch)
tree7721d75fc2fb6270f31ade15411922920696dfb4
parentd27e0f7a640f4ad97bb6cc3eceec581d89a21d4c (diff)
Alacritty version 0.12.0-rc2v0.12.0-rc2
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock8
-rw-r--r--alacritty/Cargo.toml8
-rw-r--r--alacritty/windows/wix/alacritty.wxs2
-rw-r--r--alacritty_config/Cargo.toml2
-rw-r--r--alacritty_config_derive/Cargo.toml4
-rw-r--r--alacritty_terminal/Cargo.toml6
-rw-r--r--extra/alacritty-msg.man2
-rw-r--r--extra/alacritty.man2
-rw-r--r--extra/osx/Alacritty.app/Contents/Info.plist2
10 files changed, 19 insertions, 19 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a8fdc42..c24767a5 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.12.0-rc1
+## 0.12.0-rc2
### Added
diff --git a/Cargo.lock b/Cargo.lock
index 260d64a4..413b2426 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -10,7 +10,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "alacritty"
-version = "0.12.0-rc1"
+version = "0.12.0-rc2"
dependencies = [
"alacritty_config",
"alacritty_config_derive",
@@ -47,7 +47,7 @@ dependencies = [
[[package]]
name = "alacritty_config"
-version = "0.1.1-rc1"
+version = "0.1.1-rc2"
dependencies = [
"log",
"serde",
@@ -57,7 +57,7 @@ dependencies = [
[[package]]
name = "alacritty_config_derive"
-version = "0.2.1-rc1"
+version = "0.2.1-rc2"
dependencies = [
"alacritty_config",
"log",
@@ -70,7 +70,7 @@ dependencies = [
[[package]]
name = "alacritty_terminal"
-version = "0.18.0-rc1"
+version = "0.18.0-rc2"
dependencies = [
"alacritty_config",
"alacritty_config_derive",
diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml
index c2db8cde..30a076d5 100644
--- a/alacritty/Cargo.toml
+++ b/alacritty/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "alacritty"
-version = "0.12.0-rc1"
+version = "0.12.0-rc2"
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
description = "A fast, cross-platform, OpenGL terminal emulator"
@@ -11,16 +11,16 @@ rust-version = "1.60.0"
[dependencies.alacritty_terminal]
path = "../alacritty_terminal"
-version = "0.18.0-rc1"
+version = "0.18.0-rc2"
default-features = false
[dependencies.alacritty_config_derive]
path = "../alacritty_config_derive"
-version = "0.2.1-rc1"
+version = "0.2.1-rc2"
[dependencies.alacritty_config]
path = "../alacritty_config"
-version = "0.1.1-rc1"
+version = "0.1.1-rc2"
[dependencies]
clap = { version = "3.0.0", features = ["derive", "env"] }
diff --git a/alacritty/windows/wix/alacritty.wxs b/alacritty/windows/wix/alacritty.wxs
index fbfdc217..4256cef0 100644
--- a/alacritty/windows/wix/alacritty.wxs
+++ b/alacritty/windows/wix/alacritty.wxs
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="windows-1252"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
- <Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.12.0-rc1" Manufacturer="Alacritty">
+ <Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.12.0-rc2" Manufacturer="Alacritty">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/>
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
<Icon Id="AlacrittyIco" SourceFile=".\alacritty\windows\alacritty.ico"/>
diff --git a/alacritty_config/Cargo.toml b/alacritty_config/Cargo.toml
index 089ac96c..b4c55129 100644
--- a/alacritty_config/Cargo.toml
+++ b/alacritty_config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "alacritty_config"
-version = "0.1.1-rc1"
+version = "0.1.1-rc2"
authors = ["Christian Duerr <contact@christianduerr.com>"]
license = "MIT/Apache-2.0"
description = "Alacritty configuration abstractions"
diff --git a/alacritty_config_derive/Cargo.toml b/alacritty_config_derive/Cargo.toml
index d3338d08..bc747a15 100644
--- a/alacritty_config_derive/Cargo.toml
+++ b/alacritty_config_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "alacritty_config_derive"
-version = "0.2.1-rc1"
+version = "0.2.1-rc2"
authors = ["Christian Duerr <contact@christianduerr.com>"]
license = "MIT/Apache-2.0"
description = "Failure resistant deserialization derive"
@@ -18,7 +18,7 @@ quote = "1.0.7"
[dev-dependencies.alacritty_config]
path = "../alacritty_config"
-version = "0.1.1-rc1"
+version = "0.1.1-rc2"
[dev-dependencies]
serde = { version = "1.0.117", features = ["derive"] }
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml
index 4fcc173a..56e8e8ff 100644
--- a/alacritty_terminal/Cargo.toml
+++ b/alacritty_terminal/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "alacritty_terminal"
-version = "0.18.0-rc1"
+version = "0.18.0-rc2"
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
description = "Library for writing terminal emulators"
@@ -11,11 +11,11 @@ rust-version = "1.60.0"
[dependencies.alacritty_config_derive]
path = "../alacritty_config_derive"
-version = "0.2.1-rc1"
+version = "0.2.1-rc2"
[dependencies.alacritty_config]
path = "../alacritty_config"
-version = "0.1.1-rc1"
+version = "0.1.1-rc2"
[dependencies]
libc = "0.2"
diff --git a/extra/alacritty-msg.man b/extra/alacritty-msg.man
index 6c2bf46c..06aa985d 100644
--- a/extra/alacritty-msg.man
+++ b/extra/alacritty-msg.man
@@ -1,4 +1,4 @@
-.TH ALACRITTY-MSG "1" "October 2021" "alacritty 0.12.0-rc1" "User Commands"
+.TH ALACRITTY-MSG "1" "October 2021" "alacritty 0.12.0-rc2" "User Commands"
.SH NAME
alacritty-msg \- Send messages to Alacritty
.SH "SYNOPSIS"
diff --git a/extra/alacritty.man b/extra/alacritty.man
index fb6bbb69..005266a0 100644
--- a/extra/alacritty.man
+++ b/extra/alacritty.man
@@ -1,4 +1,4 @@
-.TH ALACRITTY "1" "August 2018" "alacritty 0.12.0-rc1" "User Commands"
+.TH ALACRITTY "1" "August 2018" "alacritty 0.12.0-rc2" "User Commands"
.SH NAME
Alacritty \- A fast, cross-platform, OpenGL terminal emulator
.SH "SYNOPSIS"
diff --git a/extra/osx/Alacritty.app/Contents/Info.plist b/extra/osx/Alacritty.app/Contents/Info.plist
index 48d22891..33199f23 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.12.0-rc1</string>
+ <string>0.12.0-rc2</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>