Skip to content

Commit 5c451b9

Browse files
authored
Release 0.13.0 (#1032)
* update version * add publish workflow * update dependencies versions * fix name * add --workspace
1 parent 060dbf6 commit 5c451b9

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: publish
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
publish:
10+
name: Publish
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout sources
14+
uses: actions/checkout@v4
15+
- name: Install stable toolchain
16+
uses: dtolnay/rust-toolchain@1.90.0
17+
- name: Publish crate lambdaworks
18+
run: cargo publish --workspace --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --all-features

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ exclude = ["ensure-no_std"]
2727
resolver = "2"
2828

2929
[workspace.package]
30-
version = "0.12.0"
30+
version = "0.13.0"
3131
edition = "2021"
3232
license = "Apache-2.0"
3333
repository = "https://github.com/lambdaclass/lambdaworks"
3434

3535
[workspace.dependencies]
36-
lambdaworks-crypto = { path = "./crates/crypto", version = "0.12.0", default-features = false }
37-
lambdaworks-gpu = { path = "./crates/gpu", version = "0.12.0" }
38-
lambdaworks-math = { path = "./crates/math", version = "0.12.0", default-features = false }
36+
lambdaworks-crypto = { path = "./crates/crypto", version = "0.13.0", default-features = false }
37+
lambdaworks-gpu = { path = "./crates/gpu", version = "0.13.0" }
38+
lambdaworks-math = { path = "./crates/math", version = "0.13.0", default-features = false }
3939
lambdaworks-groth16 = { path = "./crates/provers/groth16" }
4040
lambdaworks-circom-adapter = { path = "./crates/provers/groth16/circom-adapter" }
4141
lambdaworks-sumcheck = { path = "./crates/provers/sumcheck" }

crates/crypto/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Add this to your `Cargo.toml`
99
```toml
1010
[dependencies]
11-
lambdaworks-crypto = "0.12.0"
11+
lambdaworks-crypto = "0.13.0"
1212
```
1313

1414
## Structure
@@ -24,4 +24,3 @@ For examples on:
2424
- Hash functions, refer to [Hash functions' readme](./src/hash/README.md)
2525
- Fiat-Shamir heuristic, refer to [Fiat-Shamir's readme](./src/fiat_shamir/README.md)
2626
- Polynomial commitment schemes, refer to [PCS's readme](./src/commitments/README.md)
27-

crates/math/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Add this to your `Cargo.toml`
99
```toml
1010
[dependencies]
11-
lambdaworks-math = "0.12.0"
11+
lambdaworks-math = "0.13.0"
1212
```
1313

1414
## Structure

0 commit comments

Comments
 (0)