1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-11 21:18:22 +03:00

Release 0.8.0 (#245)

This commit is contained in:
Ellie 2021-12-17 19:00:08 +00:00 committed by GitHub
parent 133971179e
commit 88b2651ba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 420 additions and 460 deletions

View File

@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [0.8.0] - 2021-12-17
1339711 Add Alt+backspace and Ctrl+u keybinds for deleting by word and by line, respectively (#243)
059e858 remove unused environment var loading entire history into an env var (#242)
079d803 Enable help messages for command line arguments (#239)
87df7d8 Fish importing (#234)
6daaeb2 Bump serde_json from 1.0.64 to 1.0.72 (#219)
2df7428 Bump itertools from 0.10.1 to 0.10.3 (#236)
d81e452 Bump tui from 0.15.0 to 0.16.0 (#225)
0abd063 Support generating shell completions (#235)
28f78ba Update messages in install.sh about the AUR packages (#231)
b549095 Update install.sh to use `pacman` on Arch Linux (#229)
e242f89 Update installation instructions for Arch Linux (#228)
cd3af87 Bump sqlx from 0.5.5 to 0.5.7 (#210)
c8f60b2 fix: resolve some issues with install.sh (#188)
4bdf4c4 feat: login/register no longer blocking (#216)
9e6746a Remove dev dep with wildcard (#224)
## [0.7.2] - 2021-12-08
6e8ec868 chore: improve build times (#213)

844
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "atuin"
version = "0.7.2"
version = "0.8.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@ -29,9 +29,9 @@ atuin = { path = "/usr/bin/atuin" }
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
[dependencies]
atuin-server = { path = "atuin-server", version = "0.7.2" }
atuin-client = { path = "atuin-client", version = "0.7.2" }
atuin-common = { path = "atuin-common", version = "0.7.2" }
atuin-server = { path = "atuin-server", version = "0.8.0" }
atuin-client = { path = "atuin-client", version = "0.8.0" }
atuin-common = { path = "atuin-common", version = "0.8.0" }
log = "0.4"
pretty_env_logger = "0.4"

View File

@ -1,6 +1,6 @@
[package]
name = "atuin-client"
version = "0.7.2"
version = "0.8.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@ -11,7 +11,7 @@ repository = "https://github.com/ellie/atuin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atuin-common = { path = "../atuin-common", version = "0.7.2" }
atuin-common = { path = "../atuin-common", version = "0.8.0" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }

View File

@ -1,6 +1,6 @@
[package]
name = "atuin-common"
version = "0.7.2"
version = "0.8.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"

View File

@ -1,6 +1,6 @@
[package]
name = "atuin-server"
version = "0.7.2"
version = "0.8.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@ -9,7 +9,7 @@ homepage = "https://atuin.sh"
repository = "https://github.com/ellie/atuin"
[dependencies]
atuin-common = { path = "../atuin-common", version = "0.7.2" }
atuin-common = { path = "../atuin-common", version = "0.8.0" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }