Skip to content

Commit e9e5931

Browse files
authored
chore: bump version to 0.1.2 and fix Python workflows (#28)
1 parent 41c1891 commit e9e5931

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
6363
with:
6464
target: ${{ matrix.target }}
65-
args: --release --out dist --manifest-path crates/nblm-python/Cargo.toml
65+
args: --release --out dist --manifest-path ../crates/nblm-python/Cargo.toml
6666
sccache: "true"
6767
manylinux: auto
6868
working-directory: python
@@ -87,7 +87,7 @@ jobs:
8787
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
8888
with:
8989
command: sdist
90-
args: --out dist --manifest-path crates/nblm-python/Cargo.toml
90+
args: --out dist --manifest-path ../crates/nblm-python/Cargo.toml
9191
working-directory: python
9292

9393
- name: Upload sdist

.github/workflows/python-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
6464
with:
6565
target: ${{ matrix.target }}
66-
args: --release --out dist --manifest-path crates/nblm-python/Cargo.toml
66+
args: --release --out dist --manifest-path ../crates/nblm-python/Cargo.toml
6767
sccache: "true"
6868
manylinux: auto
6969
working-directory: python
@@ -88,7 +88,7 @@ jobs:
8888
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
8989
with:
9090
command: sdist
91-
args: --out dist --manifest-path crates/nblm-python/Cargo.toml
91+
args: --out dist --manifest-path ../crates/nblm-python/Cargo.toml
9292
working-directory: python
9393

9494
- name: Upload sdist

.github/workflows/rust-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: publish-crates
1+
name: Publish Rust Crates
22

33
on:
44
release:

.github/workflows/rust-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: release
1+
name: Release Rust
22

33
on:
44
push:

crates/nblm-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nblm-cli"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Command-line interface for NotebookLM Enterprise API"

crates/nblm-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nblm-core"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Core library for NotebookLM Enterprise API client"

crates/nblm-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nblm-python"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Python bindings for nblm-core (NotebookLM Enterprise API client)"

python/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 = "nblm"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Python bindings for NotebookLM Enterprise API client"
99
readme = "README.md"
1010
requires-python = ">=3.14"

0 commit comments

Comments
 (0)