Release v0.7.1 (#108)
This commit is contained in:
parent
fa5c94de65
commit
4286f65b01
6 changed files with 31 additions and 13 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -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
8
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"] }
|
||||
|
|
Loading…
Reference in a new issue