Skip to content

Commit

Permalink
release: v0.8.1
Browse files Browse the repository at this point in the history
Also upgraded dependencies to latest compatible versions
  • Loading branch information
ohsayan committed Apr 1, 2024
1 parent cd5c1f0 commit 0b0acd2
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 143,7 @@ jobs:
sudo apt install gh -y
- name: Upload release binaries
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
TAG_NAME: ${{ env.VERSION }}
run: |
gh auth login --with-token <<< $GITHUB_TOKEN
Expand Down
84 changes: 42 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "skysh"
version = "0.8.0"
version = "0.8.1"
authors = ["Sayan Nandan <[email protected]>"]
edition = "2021"
description = "The Skytable Shell (skysh)"
Expand Down
2 changes: 1 addition & 1 deletion libsky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
authors = ["Sayan Nandan <[email protected]>"]
edition = "2021"
name = "libsky"
version = "0.8.0"
version = "0.8.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
8 changes: 4 additions & 4 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
authors = ["Sayan Nandan <[email protected]>"]
edition = "2021"
name = "skyd"
version = "0.8.0"
version = "0.8.1"
description = "Skytable is a modern NoSQL database powered by BlueQL that aims to deliver performance, scalability and flexibility with data"
license = "AGPL-3.0"
build = "build.rs"
Expand All @@ -23,12 23,12 @@ openssl = { version = "0.10.64", features = ["vendored"] }
crossbeam-epoch = { version = "0.9.18" }
parking_lot = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
tokio = { version = "1.36.0", features = ["full"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-openssl = "0.6.4"
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
crc = "3.0.1"
serde_yaml = "0.9.33"
chrono = "0.4.35"
chrono = "0.4.37"

[target.'cfg(all(not(target_env = "msvc"), not(miri)))'.dependencies]
# external deps
Expand All @@ -49,7 49,7 @@ libc = "0.2.153"
[dev-dependencies]
# external deps
rand = "0.8.5"
tokio = { version = "1.36.0", features = ["test-util"] }
tokio = { version = "1.37.0", features = ["test-util"] }
skytable = { git = "https://github.com/skytable/client-rust.git" }

[features]
Expand Down
4 changes: 2 additions & 2 deletions sky-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
authors = ["Sayan Nandan <[email protected]>"]
edition = "2021"
name = "sky-bench"
version = "0.8.0"
version = "0.8.1"
description = "The Skytable benchmark tool can be used to benchmark Skytable installations"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -19,4 19,4 @@ crossbeam-channel = "0.5.12"
num_cpus = "1.16.0"
env_logger = "0.11.3"
log = "0.4.21"
tokio = { version = "1.36.0", features = ["full"] }
tokio = { version = "1.37.0", features = ["full"] }
2 changes: 1 addition & 1 deletion sky-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
authors = ["Sayan Nandan <[email protected]>"]
edition = "2021"
name = "sky_macros"
version = "0.8.0"
version = "0.8.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 0b0acd2

Please sign in to comment.