Skip to content

Commit ec11f82

Browse files
committed
feat: update versions to 0.1.8 and copy README to release directory
1 parent f016790 commit ec11f82

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ jobs:
199199
mkdir -p kiru-py/all_wheels
200200
find . -type f -name "*.whl" -exec cp {} kiru-py/all_wheels/ \;
201201
202+
- name: Copy README to kiru-py
203+
run: cp README.md kiru-py/README.md
204+
202205
- name: Publish kiru-py to PyPI
203206
uses: PyO3/maturin-action@v1
204207
env:

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kiru-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# kiru/Cargo.toml
22
[package]
33
name = "kiru"
4-
version = "0.1.7"
4+
version = "0.1.8"
55
edition = "2021"
66
description = "Fast text chunking for Rust"
77
license = "MIT"

kiru-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# kiru-py/Cargo.toml
22
[package]
33
name = "kiru-py"
4-
version = "0.1.7"
4+
version = "0.1.8"
55
edition = "2021"
66
description = "Python bindings for kiru text chunking library"
77
repository = "https://github.com/bitswired/kiru"
@@ -17,6 +17,6 @@ pyo3 = { workspace = true }
1717

1818
[dependencies.kiru]
1919
path = "../kiru-core"
20-
version = "0.1.7"
20+
version = "0.1.8"
2121
[build-dependencies]
2222
# None needed for simple bindings

0 commit comments

Comments
 (0)