Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.20.0-alpha.8 #227

Merged
merged 2 commits into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion heed-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed-traits"
version = "0.20.0-alpha.7"
version = "0.20.0-alpha.8"
authors = ["Kerollmops <renault.cle@gmail.com>"]
description = "The traits used inside of the fully typed LMDB wrapper, heed"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions heed-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed-types"
version = "0.20.0-alpha.7"
version = "0.20.0-alpha.8"
authors = ["Kerollmops <renault.cle@gmail.com>"]
description = "The types used with the fully typed LMDB wrapper, heed"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ bytemuck = { version = "1.12.3", features = [
"extern_crate_std",
] }
byteorder = "1.4.3"
heed-traits = { version = "0.20.0-alpha.7", path = "../heed-traits" }
heed-traits = { version = "0.20.0-alpha.8", 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 }
Expand Down
6 changes: 3 additions & 3 deletions heed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heed"
version = "0.20.0-alpha.7"
version = "0.20.0-alpha.8"
authors = ["Kerollmops <renault.cle@gmail.com>"]
description = "A fully typed LMDB wrapper with minimum overhead"
license = "MIT"
Expand All @@ -14,8 +14,8 @@ edition = "2021"
bitflags = { version = "2.3.3", features = ["serde"] }
bytemuck = "1.12.3"
byteorder = { version = "1.4.3", default-features = false }
heed-traits = { version = "0.20.0-alpha.7", path = "../heed-traits" }
heed-types = { version = "0.20.0-alpha.7", default-features = false, path = "../heed-types" }
heed-traits = { version = "0.20.0-alpha.8", path = "../heed-traits" }
heed-types = { version = "0.20.0-alpha.8", 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"
Expand Down
4 changes: 2 additions & 2 deletions heed/src/iterator/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ impl<'txn, KC, DC, IM> RwIter<'txn, KC, DC, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down Expand Up @@ -648,7 +648,7 @@ impl<'txn, KC, DC, IM> RwRevIter<'txn, KC, DC, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down
4 changes: 2 additions & 2 deletions heed/src/iterator/prefix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ impl<'txn, KC, DC, C, IM> RwPrefix<'txn, KC, DC, C, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down Expand Up @@ -684,7 +684,7 @@ impl<'txn, KC, DC, C, IM> RwRevPrefix<'txn, KC, DC, C, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down
4 changes: 2 additions & 2 deletions heed/src/iterator/range.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl<'txn, KC, DC, IM> RwRange<'txn, KC, DC, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down Expand Up @@ -740,7 +740,7 @@ impl<'txn, KC, DC, IM> RwRevRange<'txn, KC, DC, IM> {

/// Insert a key-value pair in this database. The entry is written with the specified flags and data codec.
///
/// For more info, see [`RwIter::put_current_with_flags`].
/// For more info, see [`RwIter::put_current_with_options`].
///
/// # Safety
///
Expand Down
Loading