1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-11 13:15:23 +03:00

Release v0.7.1 (#108)

This commit is contained in:
Ellie Huxtable 2021-05-10 22:31:41 +01:00 committed by GitHub
parent fa5c94de65
commit 4286f65b01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 31 additions and 13 deletions

View File

@ -7,6 +7,24 @@ and this project (mostly) adheres to [Semantic Versioning](https://semver.org/sp
## [Unreleased]
## [0.7.1] - 2021-05-10
Very minor patch release
### Added
### Changed
### Deprecated
### Removed
### Fixed
- Fix the atuin-common build (#107)
### Security
## [0.7.0] - 2021-05-10
Thank you so much to everyone that started contributing to Atuin for this release!

8
Cargo.lock generated
View File

@ -76,7 +76,7 @@ dependencies = [
[[package]]
name = "atuin"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"async-trait",
"atuin-client",
@ -108,7 +108,7 @@ dependencies = [
[[package]]
name = "atuin-client"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"async-trait",
"atuin-common",
@ -142,7 +142,7 @@ dependencies = [
[[package]]
name = "atuin-common"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"chrono",
"eyre",
@ -158,7 +158,7 @@ dependencies = [
[[package]]
name = "atuin-server"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"async-trait",
"atuin-common",

View File

@ -1,6 +1,6 @@
[package]
name = "atuin"
version = "0.7.0"
version = "0.7.1"
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.0" }
atuin-client = { path = "atuin-client", version = "0.7.0" }
atuin-common = { path = "atuin-common", version = "0.7.0" }
atuin-server = { path = "atuin-server", version = "0.7.1" }
atuin-client = { path = "atuin-client", version = "0.7.1" }
atuin-common = { path = "atuin-common", version = "0.7.1" }
log = "0.4"
pretty_env_logger = "0.4"

View File

@ -1,6 +1,6 @@
[package]
name = "atuin-client"
version = "0.7.0"
version = "0.7.1"
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.0" }
atuin-common = { path = "../atuin-common", version = "0.7.1" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "atuin-server"
version = "0.7.0"
version = "0.7.1"
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.0" }
atuin-common = { path = "../atuin-common", version = "0.7.1" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }