summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2022-04-23 21:49:11 +0100
committerGitHub <noreply@github.com>2022-04-23 21:49:11 +0100
commit2fd9651dea01d301584644caa495a7f9a661600f (patch)
tree139019427d2506599c5cd4c49c9742228d63d84d
parenta050faaf32403b7e7e14636d364522b4d5f9386d (diff)
Release v0.9.1 (#338)v0.9.1
a050faa Use `--locked` flag for CI builds (#337) 8737474 Update Cargo.lock (#336) eab1dbf sql builder (#333) Fixed to include an updated lockfile that was missed in the last release Thank you for the rapid report @orhun!
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml8
-rw-r--r--atuin-client/Cargo.toml4
-rw-r--r--atuin-common/Cargo.toml2
-rw-r--r--atuin-server/Cargo.toml4
5 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b7f742bb..009a922b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -70,7 +70,7 @@ dependencies = [
[[package]]
name = "atuin"
-version = "0.9.0"
+version = "0.9.1"
dependencies = [
"async-trait",
"atuin-client",
@@ -104,7 +104,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "0.9.0"
+version = "0.9.1"
dependencies = [
"async-trait",
"atuin-common",
@@ -138,7 +138,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "0.9.0"
+version = "0.9.1"
dependencies = [
"chrono",
"rust-crypto",
@@ -148,7 +148,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "0.9.0"
+version = "0.9.1"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index e28fb56e..e6dd5da3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin"
-version = "0.9.0"
+version = "0.9.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
rust-version = "1.59"
@@ -38,9 +38,9 @@ sync = ["atuin-client/sync"]
server = ["atuin-server", "tracing-subscriber"]
[dependencies]
-atuin-server = { path = "atuin-server", version = "0.9.0", optional = true }
-atuin-client = { path = "atuin-client", version = "0.9.0", default-features = false }
-atuin-common = { path = "atuin-common", version = "0.9.0" }
+atuin-server = { path = "atuin-server", version = "0.9.1", optional = true }
+atuin-client = { path = "atuin-client", version = "0.9.1", default-features = false }
+atuin-common = { path = "atuin-common", version = "0.9.1" }
log = "0.4"
pretty_env_logger = "0.4"
diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml
index 9d76b780..8b816d0c 100644
--- a/atuin-client/Cargo.toml
+++ b/atuin-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-client"
-version = "0.9.0"
+version = "0.9.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@@ -22,7 +22,7 @@ sync = [
]
[dependencies]
-atuin-common = { path = "../atuin-common", version = "0.9.0" }
+atuin-common = { path = "../atuin-common", version = "0.9.1" }
log = "0.4"
chrono = { version = "0.4", features = ["serde"] }
diff --git a/atuin-common/Cargo.toml b/atuin-common/Cargo.toml
index e7a22f60..67e78f39 100644
--- a/atuin-common/Cargo.toml
+++ b/atuin-common/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-common"
-version = "0.9.0"
+version = "0.9.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml
index fd6121c7..8e5dbb45 100644
--- a/atuin-server/Cargo.toml
+++ b/atuin-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-server"
-version = "0.9.0"
+version = "0.9.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.9.0" }
+atuin-common = { path = "../atuin-common", version = "0.9.1" }
tracing = "0.1"
chrono = { version = "0.4", features = ["serde"] }