Skip to content

Commit

Permalink
Merge pull request #227 from meilisearch/bump-version
Browse files Browse the repository at this point in the history
Bump version to v0.20.0-alpha.8
  • Loading branch information
Kerollmops committed Nov 26, 2023
2 parents fae091e + 64fd6fe commit af6db20
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
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

0 comments on commit af6db20

Please sign in to comment.