mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-25 14:05:41 -05:00
Alacritty version 0.13.1-rc1
This commit is contained in:
parent
6e7895b2af
commit
57da0bf903
7 changed files with 11 additions and 11 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -32,7 +32,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "alacritty"
|
||||
version = "0.13.0"
|
||||
version = "0.13.1-rc1"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"alacritty_config",
|
||||
|
@ -68,7 +68,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "alacritty_config"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"alacritty_config_derive",
|
||||
"log",
|
||||
|
@ -91,7 +91,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "alacritty_terminal"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0-rc1"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"bitflags 2.4.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "alacritty"
|
||||
version = "0.13.0"
|
||||
version = "0.13.1-rc1"
|
||||
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.20.0"
|
||||
version = "0.21.0-rc1"
|
||||
|
||||
[dependencies.alacritty_config_derive]
|
||||
path = "../alacritty_config_derive"
|
||||
|
@ -19,7 +19,7 @@ version = "0.2.2"
|
|||
|
||||
[dependencies.alacritty_config]
|
||||
path = "../alacritty_config"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0-rc1"
|
||||
|
||||
[dependencies]
|
||||
ahash = { version = "0.8.6", features = ["no-rng"] }
|
||||
|
|
|
@ -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.0" Manufacturer="Alacritty" InstallerVersion="200">
|
||||
<Package Name="Alacritty" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.13.1-rc1" 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" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "alacritty_config"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0"
|
||||
authors = ["Christian Duerr <contact@christianduerr.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Alacritty configuration abstractions"
|
||||
|
|
|
@ -18,7 +18,7 @@ syn = { version = "2.0.16", features = ["derive", "parsing", "proc-macro", "prin
|
|||
|
||||
[dev-dependencies.alacritty_config]
|
||||
path = "../alacritty_config"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0"
|
||||
|
||||
[dev-dependencies]
|
||||
log = "0.4.11"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "alacritty_terminal"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0-rc1"
|
||||
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
||||
license = "Apache-2.0"
|
||||
description = "Library for writing terminal emulators"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.13.0</string>
|
||||
<string>0.13.1-rc1</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
|
|
Loading…
Reference in a new issue