Skip to content

Commit

Permalink
Release 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Neely committed Oct 28, 2018
1 parent f2c3f4f commit b14e7c1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ assert_eq!(tree.get(&k), Ok(Some(vec![4])));

* ordered map API
* fully atomic single-key operations, supports CAS
* zero-copy reads
* merge operators
* [zstd](https://github.com/facebook/zstd) compression (use the zstd build feature)
* cpu-scalable lock-free implementation
Expand Down
4 changes: 2 additions & 2 deletions crates/pagecache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pagecache"
version = "0.6.0"
version = "0.7.0"
authors = ["Tyler Neely <[email protected]>"]
description = "lock-free pagecache and log for high-performance databases"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -30,7 +30,7 @@ fail = {version = "0.2", optional = true}
rayon = "1.0"
zstd = {version = "0.4", optional = true}
rand = {version = "0.5", optional = true}
pagetable = {version = "0.0", path = "../pagetable"}
pagetable = {version = "0.1", path = "../pagetable"}

[dependencies.historian]
version = "3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/pagetable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pagetable"
version = "0.0.4"
version = "0.1.0"
authors = ["Tyler Neely <[email protected]>"]
description = "simple wait-free two-level pagetable with 2mb pages"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/sled/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sled"
version = "0.15.21"
version = "0.16.0"
authors = ["Tyler Neely <[email protected]>"]
description = "a flash-sympathetic persistent lock-free B+ tree"
license = "MIT/Apache-2.0"
Expand All @@ -27,4 +27,4 @@ version = "0.4"
[dependencies]
serde = "1.0"
serde_derive = "1.0"
pagecache = { path = "../pagecache", version = "0.6.0" }
pagecache = { path = "../pagecache", version = "0.7.0" }

0 comments on commit b14e7c1

Please sign in to comment.