Skip to content

Commit

Permalink
release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Jan 28, 2024
1 parent 59f852f commit e4e743d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.8.1] - 2024-01-28

### Fixed

- Stuck last replication error, [PR-393](https://github.com/reductstore/reductstore/pull/393)
Expand Down Expand Up @@ -599,7 +601,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release with basic HTTP API and FIFO bucket quota

[Unreleased]: https://github.com/reductstore/reductstore/compare/v1.8.0...HEAD
[Unreleased]: https://github.com/reductstore/reductstore/compare/v1.8.1...HEAD

[1.8.1]: https://github.com/reductstore/reductstore/compare/v1.8.0...v1.8.1

[1.8.0]: https://github.com/reductstore/reductstore/compare/v1.7.3...v1.8.0

Expand Down
10 changes: 5 additions & 5 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 Cargo.toml
Expand Up @@ -11,7 +11,7 @@ members = [
resolver = "2"

[workspace.package]
version = "1.8.0"
version = "1.8.1"
authors = ["Alexey Timin <atimin@reduct.store>"]
edition = "2021"
rust-version = "1.75.0"
2 changes: 1 addition & 1 deletion reduct_rs/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ categories = ["database"]
crate-type = ["lib"]

[dependencies]
reduct-base = { path = "../reduct_base", version = "1.8.0-dev" }
reduct-base = { path = "../reduct_base", version = "1.8.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "stream"] }
Expand Down
6 changes: 3 additions & 3 deletions reductstore/Cargo.toml
Expand Up @@ -26,9 +26,9 @@ crate-type = ["lib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reduct-base = { path = "../reduct_base", version = "1.8.0" }
reduct-macros = { path = "../reduct_macros", version = "1.8.0" }
reduct-rs = { path = "../reduct_rs", version = "1.8.0" }
reduct-base = { path = "../reduct_base", version = "1.8.1" }
reduct-macros = { path = "../reduct_macros", version = "1.8.1" }
reduct-rs = { path = "../reduct_rs", version = "1.8.1" }

log = "0.4.20"
chrono = { version = "0.4.31", features = ["serde"] }
Expand Down

0 comments on commit e4e743d

Please sign in to comment.