diff --git a/heed-traits/Cargo.toml b/heed-traits/Cargo.toml index 6d69d2d9..3745a08c 100644 --- a/heed-traits/Cargo.toml +++ b/heed-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed-traits" -version = "0.20.0-alpha.9" +version = "0.20.0" authors = ["Kerollmops "] description = "The traits used inside of the fully typed LMDB wrapper, heed" license = "MIT" diff --git a/heed-types/Cargo.toml b/heed-types/Cargo.toml index f11d6a34..0c5523ad 100644 --- a/heed-types/Cargo.toml +++ b/heed-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed-types" -version = "0.20.0-alpha.9" +version = "0.20.0" authors = ["Kerollmops "] description = "The types used with the fully typed LMDB wrapper, heed" license = "MIT" @@ -11,7 +11,7 @@ edition = "2021" [dependencies] bincode = { version = "1.3.3", optional = true } byteorder = "1.4.3" -heed-traits = { version = "0.20.0-alpha.9", path = "../heed-traits" } +heed-traits = { version = "0.20.0", path = "../heed-traits" } serde = { version = "1.0.151", optional = true } serde_json = { version = "1.0.91", optional = true } rmp-serde = { version = "1.1.2", optional = true } diff --git a/heed/Cargo.toml b/heed/Cargo.toml index 38d6fd2e..5da2b050 100644 --- a/heed/Cargo.toml +++ b/heed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heed" -version = "0.20.0-alpha.9" +version = "0.20.0" authors = ["Kerollmops "] description = "A fully typed LMDB wrapper with minimum overhead" license = "MIT" @@ -13,8 +13,8 @@ edition = "2021" [dependencies] bitflags = { version = "2.3.3", features = ["serde"] } byteorder = { version = "1.4.3", default-features = false } -heed-traits = { version = "0.20.0-alpha.9", path = "../heed-traits" } -heed-types = { version = "0.20.0-alpha.9", default-features = false, path = "../heed-types" } +heed-traits = { version = "0.20.0", path = "../heed-traits" } +heed-types = { version = "0.20.0", default-features = false, path = "../heed-types" } libc = "0.2.139" lmdb-master-sys = { version = "0.1.0", path = "../lmdb-master-sys" } once_cell = "1.16.0"