mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Version 0.2.1
This commit is contained in:
parent
64a7ca60f5
commit
44909bae69
6 changed files with 7 additions and 5 deletions
|
@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## Version 0.2.1
|
||||
|
||||
### Added
|
||||
|
||||
- Implement the `hidden` escape sequence (`echo -e "\e[8mTEST"`)
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -8,7 +8,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "alacritty"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"arraydeque 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "alacritty"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Joe Wilm <joe@jwilm.com>"]
|
||||
license = "Apache-2.0"
|
||||
build = "build.rs"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH ALACRITTY "1" "August 2018" "alacritty 0.2.0" "User Commands"
|
||||
.TH ALACRITTY "1" "August 2018" "alacritty 0.2.1" "User Commands"
|
||||
.SH NAME
|
||||
alacritty \- a cross-platform, gpu-accelerated terminal emulator
|
||||
.SH "SYNOPSIS"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.2.0</string>
|
||||
<string>0.2.1</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: alacritty # you probably want to 'snapcraft register <name>'
|
||||
version: '0.2.0' # just for humans, typically '1.2+git' or '1.3.2'
|
||||
version: '0.2.1' # just for humans, typically '1.2+git' or '1.3.2'
|
||||
summary: Modern, GPU accelerated terminal emulator # 79 char long summary
|
||||
description: |
|
||||
Modern, GPU accelerated terminal emulator
|
||||
|
|
Loading…
Reference in a new issue