Skip to content
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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "map-api"
description = "Raft state machine"
version = "0.2.0"
version = "0.2.1"
authors = ["Databend Authors <opensource@datafuselabs.com>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/seq_value/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
//! sequence number and optional metadata. These are used to track the ordering and
//! lifecycle of values in storage systems.

mod change;
mod seq_value_trait;
mod seqv;
mod update;

pub use change::Change;
pub use seq_value_trait::SeqValue;
pub use seqv::SeqV;
pub use update::Change;

#[deprecated(since = "0.2.0", note = "Use `Change` instead")]
pub type Update<M, V = Vec<u8>> = Change<M, V>;
Loading