Skip to content

Commit 8015ed2

Browse files
authored
Bump version to v0.3.3 snapshot (#155)
1 parent a3f93e3 commit 8015ed2

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "prollytree"
33
description = "A prolly (probabilistic) tree for efficient storage, retrieval, and modification of ordered data."
44
authors = ["Feng Zhang <f.feng.zhang@gmail.com>"]
5-
version = "0.3.2"
5+
version = "0.3.3-beta"
66
edition = "2021"
77

88
license = "Apache-2.0"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Add to your `Cargo.toml`:
2222

2323
```toml
2424
[dependencies]
25-
prollytree = "0.3.2"
25+
prollytree = "0.3.3-beta"
2626

2727
# Optional features
28-
prollytree = { version = "0.3.2", features = ["git", "sql"] }
28+
prollytree = { version = "0.3.3-beta", features = ["git", "sql"] }
2929
```
3030

3131
## Examples
@@ -118,7 +118,7 @@ if let Some(node) = mem_tree.find(b"session:abc123") {
118118

119119
```toml
120120
[dependencies.prollytree]
121-
version = "0.3.2"
121+
version = "0.3.3-beta"
122122
features = ["git", "sql", "rocksdb_storage"]
123123
```
124124

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "prollytree"
7-
version = "0.3.2"
7+
version = "0.3.3-beta"
88
description = "Python bindings for ProllyTree - a probabilistic tree for efficient storage and retrieval"
99
readme = "python/README.md"
1010
requires-python = ">=3.8"

python/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
author = 'ProllyTree Contributors'
2727

2828
# The full version, including alpha/beta/rc tags
29-
release = '0.3.2'
30-
version = '0.3.2'
29+
release = '0.3.3-beta'
30+
version = '0.3.3-beta'
3131

3232
# -- General configuration ---------------------------------------------------
3333
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

python/prollytree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@
5858
if git_available:
5959
__all__.extend(["WorktreeManager", "WorktreeVersionedKvStore"])
6060

61-
__version__ = "0.3.2"
61+
__version__ = "0.3.3-beta"

src/bin/prolly-ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use std::path::{Path, PathBuf};
2222
#[derive(Parser)]
2323
#[command(name = "prolly-ui")]
2424
#[command(about = "Generate static HTML visualization for git-prolly repositories")]
25-
#[command(version = "0.3.2")]
25+
#[command(version = "0.3.3-beta")]
2626
struct Cli {
2727
/// Path to the main git repository containing datasets as subdirectories
2828
#[arg(help = "Repository path (defaults to current directory)")]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ limitations under the License.
3636
//!
3737
//! ```toml
3838
//! [dependencies]
39-
//! prollytree = "0.3.2"
39+
//! prollytree = "0.3.3-beta"
4040
//! ```
4141
//!
4242
//! Follow examples in the github repository to get started.

0 commit comments

Comments
 (0)