summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-20 21:58:36 +0100
committerEllie Huxtable <e@elm.sh>2021-04-20 21:59:54 +0100
commit053ac5eacb4c0a7ea4140ab9791d33637a4f283d (patch)
tree1438836e6b2c9963a43667712c57d992b5bbf8a6
parenta21737e2b7f8d1e426726bdd7536033f299d476a (diff)
Update versions to match
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml6
-rw-r--r--atuin-client/Cargo.toml4
-rw-r--r--atuin-common/Cargo.toml2
-rw-r--r--atuin-server/Cargo.toml4
5 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 16e8e82d..7d5868b3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -114,7 +114,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "0.1.0"
+version = "0.5.0"
dependencies = [
"async-trait",
"atuin-common",
@@ -148,7 +148,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "0.1.0"
+version = "0.5.0"
dependencies = [
"chrono",
"eyre",
@@ -164,7 +164,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "0.1.0"
+version = "0.5.0"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index 57cd00e1..58758dae 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,9 +10,9 @@ description = "atuin - magical shell history"
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
[dependencies]
-atuin-server = { path = "atuin-server", version = "0.1.0" }
-atuin-client = { path = "atuin-client", version = "0.1.0" }
-atuin-common = { path = "atuin-common", version = "0.1.0" }
+atuin-server = { path = "atuin-server", version = "0.5.0" }
+atuin-client = { path = "atuin-client", version = "0.5.0" }
+atuin-common = { path = "atuin-common", version = "0.5.0" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }
diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml
index 06c96a9a..bd92ef39 100644
--- a/atuin-client/Cargo.toml
+++ b/atuin-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-client"
-version = "0.1.0"
+version = "0.5.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@@ -9,7 +9,7 @@ description = "client library for 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.1.0" }
+atuin-common = { path = "../atuin-common", version = "0.5.0" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }
diff --git a/atuin-common/Cargo.toml b/atuin-common/Cargo.toml
index efe7da63..6dc8859b 100644
--- a/atuin-common/Cargo.toml
+++ b/atuin-common/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-common"
-version = "0.1.0"
+version = "0.5.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml
index 2cf85d26..c0ad433d 100644
--- a/atuin-server/Cargo.toml
+++ b/atuin-server/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "atuin-server"
-version = "0.1.0"
+version = "0.5.0"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
description = "server library for atuin"
[dependencies]
-atuin-common = { path = "../atuin-common", version = "0.1.0" }
+atuin-common = { path = "../atuin-common", version = "0.5.0" }
log = "0.4"
fern = {version = "0.6.0", features = ["colored"] }