Skip to content

Commit c3f2ef7

Browse files
committed
Create release v0.3.1
1 parent cc6cf7f commit c3f2ef7

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

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 <[email protected]>"]
5-
version = "0.3.1-beta"
5+
version = "0.3.1"
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
@@ -23,10 +23,10 @@ Add to your `Cargo.toml`:
2323

2424
```toml
2525
[dependencies]
26-
prollytree = "0.3.0"
26+
prollytree = "0.3.1"
2727

2828
# Optional features
29-
prollytree = { version = "0.3.0", features = ["git", "sql", "rig"] }
29+
prollytree = { version = "0.3.1", features = ["git", "sql", "rig"] }
3030
```
3131

3232
## Examples
@@ -124,7 +124,7 @@ println!("Multiple storage backends working!");
124124

125125
```toml
126126
[dependencies.prollytree]
127-
version = "0.3.0"
127+
version = "0.3.1"
128128
features = [
129129
"git", # Git-backed versioned storage
130130
"sql", # SQL interface via GlueSQL

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.1-beta"
7+
version = "0.3.1"
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.1-beta'
30-
version = '0.3.1-beta'
29+
release = '0.3.1'
30+
version = '0.3.1'
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
@@ -62,4 +62,4 @@
6262
if git_available:
6363
__all__.extend(["WorktreeManager", "WorktreeVersionedKvStore"])
6464

65-
__version__ = "0.3.1-beta"
65+
__version__ = "0.3.1"

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.1-beta")]
25+
#[command(version = "0.3.1")]
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.1-beta"
39+
//! prollytree = "0.3.1"
4040
//! ```
4141
//!
4242
//! Follow examples in the github repository to get started.

0 commit comments

Comments
 (0)