Skip to content

Commit

Permalink
release: v1.2.1 (#448)
Browse files Browse the repository at this point in the history
This is a release PR for version **1.2.1** (performing a patch bump).


It releases 10 crates: **gnark-utils**, **mp2_common**,
**groth16_framework**, **recursion_framework**, **ryhope**,
**mp2_test**, **verifiable-db**, **parsil**, **mp2_v1**, **inspect**.



**Use squash merge.**


**To trigger builds initially, close and then immediately re-open this
PR once.**

Co-authored-by: github-actions <[email protected]>
  • Loading branch information
github-actions[bot] and github-actions authored Jan 28, 2025
1 parent cfb2d59 commit 196952f
Show file tree
Hide file tree
Showing 13 changed files with 74 additions and 55 deletions.
37 changes: 28 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
# Changelog

## [1.2.0] - 2025-01-25
## [1.2.1] - 2025-01-28

[2f7d631](2f7d6319369d0814fb411bfa7555d53270f209fc)...[a9e2b59](a9e2b59e64261e41f71244e5b196a1c48c6bc9e7)
[64269de](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/64269de918791c746baafd8a2aa1bcd6b894f26c)...[cfb2d59](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/cfb2d59a80d73c146e93cc494ba54218773d563b)

### Features



- Expose `verifiable_db` version (#447)


### Miscellaneous Tasks



- Fix commit links in CHANGELOG (#446)

## [1.2.0] - 2025-01-27

[2f7d631](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/2f7d6319369d0814fb411bfa7555d53270f209fc)...[64269de](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/64269de918791c746baafd8a2aa1bcd6b894f26c)

### Features

Expand Down Expand Up @@ -36,20 +53,25 @@
- Add a release pipeline (#440)


### Release



- V1.2.0 (#445)

## [1.1.3] - 2025-01-15

[77fa458](77fa458c7d136cdea2db4637d0031facfe7d38d7)...[2f7d631](2f7d6319369d0814fb411bfa7555d53270f209fc)
[77fa458](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/77fa458c7d136cdea2db4637d0031facfe7d38d7)...[2f7d631](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/2f7d6319369d0814fb411bfa7555d53270f209fc)

### Bug Fixes



- Do not crash on missing predicate (#428)


## [1.1.2] - 2025-01-09

[cc50651](cc506517584e5bec940fcf0ce150395f6f365f48)...[77fa458](77fa458c7d136cdea2db4637d0031facfe7d38d7)
[cc50651](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/cc506517584e5bec940fcf0ce150395f6f365f48)...[77fa458](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/77fa458c7d136cdea2db4637d0031facfe7d38d7)

### Refactor

Expand All @@ -71,18 +93,16 @@

- Update dependencies (#411)


## [1.1.1] - 2024-11-15

[4255ab1](4255ab177fc6e7d5c1f4be55f62b1a380295b134)...[cc50651](cc506517584e5bec940fcf0ce150395f6f365f48)
[4255ab1](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/4255ab177fc6e7d5c1f4be55f62b1a380295b134)...[cc50651](https://github.com/Lagrange-Labs/mapreduce-plonky2/commit/cc506517584e5bec940fcf0ce150395f6f365f48)

### Features



- Tabular SELECT Queries Without Aggregation Functions (#373)


## [1.1.0] - 2024-11-07

### Features
Expand Down Expand Up @@ -379,5 +399,4 @@

- : + rlp:: (#1)


<!-- generated by git-cliff -->
20 changes: 10 additions & 10 deletions 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 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0
1.2.1
2 changes: 1 addition & 1 deletion gnark-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gnark-utils"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[build-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions groth16-framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "groth16_framework"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -14,16 +14,16 @@ revm.workspace = true
serde.workspace = true
serde_json.workspace = true

gnark-utils = { path = "../gnark-utils" , version = "1.2.0" }
mp2_common = { path = "../mp2-common" , version = "1.2.0" }
gnark-utils = { path = "../gnark-utils" , version = "1.2.1" }
mp2_common = { path = "../mp2-common" , version = "1.2.1" }

[dev-dependencies]
env_logger.workspace = true
itertools.workspace = true
rand.workspace = true
serial_test.workspace = true
sha2.workspace = true
mp2_test = { path = "../mp2-test" , version = "1.2.0" }
mp2_test = { path = "../mp2-test" , version = "1.2.1" }

recursion_framework = { path = "../recursion-framework" , version = "1.2.0" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.0" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.1" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.1" }
6 changes: 3 additions & 3 deletions inspect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inspect"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -14,5 +14,5 @@ serde.workspace = true
tabled.workspace = true
tokio.workspace = true

ryhope = { path = "../ryhope" , version = "1.2.0" }
mp2_v1 = { path = "../mp2-v1" , version = "1.2.0" }
ryhope = { path = "../ryhope" , version = "1.2.1" }
mp2_v1 = { path = "../mp2-v1" , version = "1.2.1" }
4 changes: 2 additions & 2 deletions mp2-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mp2_common"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand Down Expand Up @@ -33,7 +33,7 @@ rand.workspace = true
rstest.workspace = true
tokio.workspace = true

mp2_test = { path = "../mp2-test" , version = "1.2.0" }
mp2_test = { path = "../mp2-test" , version = "1.2.1" }

[features]
ci = ["mp2_test/ci"]
Expand Down
8 changes: 4 additions & 4 deletions mp2-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mp2_test"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -14,9 +14,9 @@ plonky2_ecgfp5.workspace = true
rand.workspace = true
serde.workspace = true

mp2_common = { path = "../mp2-common" , version = "1.2.0" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.0" }
ryhope = { path = "../ryhope" , version = "1.2.0" }
mp2_common = { path = "../mp2-common" , version = "1.2.1" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.1" }
ryhope = { path = "../ryhope" , version = "1.2.1" }

[features]
ci = []
16 changes: 8 additions & 8 deletions mp2-v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mp2_v1" # TODO: fix the name to a meaningful one.
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -27,11 +27,11 @@ serde_json.workspace = true
tokio-postgres.workspace = true
tracing.workspace = true

mp2_common = { path = "../mp2-common" , version = "1.2.0" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.0" }
ryhope = { path = "../ryhope" , version = "1.2.0" }
parsil = { path = "../parsil" , version = "1.2.0" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.0" }
mp2_common = { path = "../mp2-common" , version = "1.2.1" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.1" }
ryhope = { path = "../ryhope" , version = "1.2.1" }
parsil = { path = "../parsil" , version = "1.2.1" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.1" }

[dev-dependencies]
alloy.workspace = true
Expand All @@ -54,8 +54,8 @@ testfile.workspace = true
tokio-postgres.workspace = true
tokio.workspace = true

mp2_test = { path = "../mp2-test" , version = "1.2.0" }
parsil = { path = "../parsil" , version = "1.2.0" }
mp2_test = { path = "../mp2-test" , version = "1.2.1" }
parsil = { path = "../parsil" , version = "1.2.1" }

[features]
original_poseidon = ["mp2_common/original_poseidon"]
6 changes: 3 additions & 3 deletions parsil/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parsil"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[lib]
Expand All @@ -24,8 +24,8 @@ sqlparser.workspace = true
stderrlog = { workspace = true, optional = true }
thiserror.workspace = true

ryhope = { path = "../ryhope" , version = "1.2.0" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.0" }
ryhope = { path = "../ryhope" , version = "1.2.1" }
verifiable-db = { path = "../verifiable-db" , version = "1.2.1" }

[features]
cli = ["dep:stderrlog", "dep:clap"]
4 changes: 2 additions & 2 deletions recursion-framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "recursion_framework"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -9,7 +9,7 @@ log.workspace = true
plonky2.workspace = true
serde.workspace = true

mp2_common = { path = "../mp2-common" , version = "1.2.0" }
mp2_common = { path = "../mp2-common" , version = "1.2.1" }

[dev-dependencies]
bincode.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ryhope/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ryhope"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[lib]
Expand Down
10 changes: 5 additions & 5 deletions verifiable-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "verifiable-db"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand All @@ -17,10 +17,10 @@ plonky2_ecgfp5.workspace = true
rand.workspace = true
serde.workspace = true

mp2_common = { path = "../mp2-common" , version = "1.2.0" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.0" }
ryhope = { path = "../ryhope" , version = "1.2.0" }
mp2_test = { path = "../mp2-test" , version = "1.2.0" }
mp2_common = { path = "../mp2-common" , version = "1.2.1" }
recursion_framework = { path = "../recursion-framework" , version = "1.2.1" }
ryhope = { path = "../ryhope" , version = "1.2.1" }
mp2_test = { path = "../mp2-test" , version = "1.2.1" }

[dev-dependencies]
futures.workspace = true
Expand Down

0 comments on commit 196952f

Please sign in to comment.