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.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "prollytree"
description = "A prolly (probabilistic) tree for efficient storage, retrieval, and modification of ordered data."
authors = ["Feng Zhang <f.feng.zhang@gmail.com>"]
version = "0.3.5-beta"
version = "0.4.0"
edition = "2021"

license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ A prolly tree's shape is a deterministic function of its contents, so two replic

```toml
[dependencies]
prollytree = { version = "0.3.5-beta", features = ["git", "sql"] }
prollytree = { version = "0.4.0", features = ["git", "sql"] }
# Add `proximity` for the text-search surface, `proximity_text` for bundled MiniLM.
```

Expand Down Expand Up @@ -152,7 +152,7 @@ Python PyPI wheels ship `git`, `sql`, `rocksdb_storage`, `proximity`, and `proxi

```toml
[dependencies.prollytree]
version = "0.3.5-beta"
version = "0.4.0"
features = ["git", "sql", "proximity", "proximity_text"]
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "prollytree"
version = "0.3.5-beta"
version = "0.4.0"
description = "Python bindings for ProllyTree - a probabilistic tree for efficient storage and retrieval"
readme = "python/README.md"
requires-python = ">=3.8"
Expand Down
4 changes: 2 additions & 2 deletions python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
author = 'ProllyTree Contributors'

# The full version, including alpha/beta/rc tags
release = '0.3.5-beta'
version = '0.3.5-beta'
release = '0.4.0'
version = '0.4.0'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion python/prollytree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@
if proximity_text_available:
__all__.append("MiniLmEmbedder")

__version__ = "0.3.5-beta"
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion src/bin/prolly-ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use std::path::{Path, PathBuf};
#[derive(Parser)]
#[command(name = "prolly-ui")]
#[command(about = "Generate static HTML visualization for git-prolly repositories")]
#[command(version = "0.3.5-beta")]
#[command(version = "0.4.0")]
struct Cli {
/// Path to the main git repository containing datasets as subdirectories
#[arg(help = "Repository path (defaults to current directory)")]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ limitations under the License.
//!
//! ```toml
//! [dependencies]
//! prollytree = "0.3.5-beta"
//! prollytree = "0.4.0"
//! ```
//!
//! Follow examples in the github repository to get started.
Expand Down
Loading