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]
|
## [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
|
## [0.7.0] - 2021-05-10
|
||||||
|
|
||||||
Thank you so much to everyone that started contributing to Atuin for this release!
|
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]]
|
[[package]]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-client",
|
"atuin-client",
|
||||||
|
@ -108,7 +108,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
@ -142,7 +142,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"eyre",
|
"eyre",
|
||||||
|
@ -158,7 +158,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -29,9 +29,9 @@ atuin = { path = "/usr/bin/atuin" }
|
||||||
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
|
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-server = { path = "atuin-server", version = "0.7.0" }
|
atuin-server = { path = "atuin-server", version = "0.7.1" }
|
||||||
atuin-client = { path = "atuin-client", version = "0.7.0" }
|
atuin-client = { path = "atuin-client", version = "0.7.1" }
|
||||||
atuin-common = { path = "atuin-common", version = "0.7.0" }
|
atuin-common = { path = "atuin-common", version = "0.7.1" }
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "0.7.0" }
|
atuin-common = { path = "../atuin-common", version = "0.7.1" }
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
fern = {version = "0.6.0", features = ["colored"] }
|
fern = {version = "0.6.0", features = ["colored"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -9,7 +9,7 @@ homepage = "https://atuin.sh"
|
||||||
repository = "https://github.com/ellie/atuin"
|
repository = "https://github.com/ellie/atuin"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "0.7.0" }
|
atuin-common = { path = "../atuin-common", version = "0.7.1" }
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
fern = {version = "0.6.0", features = ["colored"] }
|
fern = {version = "0.6.0", features = ["colored"] }
|
||||||
|
|
Loading…
Reference in a new issue