Skip to content
Closed
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ git config core.hooksPath .githooks
Workflow:
```bash
# 1) edit VERSION
echo 0.51.0 > VERSION
echo 0.51.1 > VERSION

# 2) sync manifests
uv run python scripts/sync_version.py
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.51.0
0.51.1
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Version bump workflow:

```bash
# 1) edit VERSION
echo 0.51.0 > VERSION
echo 0.51.1 > VERSION

# 2) sync manifests
uv run python scripts/sync_version.py
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dev = [
"ipykernel",
]
rust = [
"s2and-rust==0.51.0",
"s2and-rust==0.51.1",
]

[tool.setuptools.packages.find]
Expand Down
468 changes: 468 additions & 0 deletions s2and/arrow_service_io.py

Large diffs are not rendered by default.

299 changes: 183 additions & 116 deletions s2and/incremental_linking/feature_block_contract.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion s2and/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
_STARTUP_WARNING_EMITTED = False
_STARTUP_WARNING_LOCK = threading.Lock()

MIN_SUPPORTED_RUST_EXTENSION_VERSION = (0, 51, 0)
MIN_SUPPORTED_RUST_EXTENSION_VERSION = (0, 51, 1)
_CORE_REQUIRED_FEATURIZER_MARKERS = (
"from_arrow_paths",
"signature_ids",
Expand Down
97 changes: 48 additions & 49 deletions s2and_rust/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 s2and_rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2and_rust"
version = "0.51.0"
version = "0.51.1"
edition = "2021"

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

[project]
name = "s2and-rust"
version = "0.51.0"
version = "0.51.1"
description = "Rust extension for s2and"
readme = "README.md"
requires-python = ">=3.11,<3.14"
Expand Down
Loading
Loading