Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(barretenberg): Release 0.5.2 #718

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.5.1","ts":"0.5.1"}
{".":"0.5.2","ts":"0.5.2"}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.2](https://github.com/AztecProtocol/barretenberg/compare/barretenberg-v0.5.1...barretenberg-v0.5.2) (2023-09-07)


### Features

* `GrumpkinScalar` type ([#1919](https://github.com/AztecProtocol/barretenberg/issues/1919)) ([ca42322](https://github.com/AztecProtocol/barretenberg/commit/ca423221d3fba5a4d60f7239fc21092db12a3c31))


### Bug Fixes

* Add retry to tag and docker actions ([#2099](https://github.com/AztecProtocol/barretenberg/issues/2099)) ([113f991](https://github.com/AztecProtocol/barretenberg/commit/113f991b1e00cef05a0855af1471addb6fe99d65))
* **breaking change:** Change embedded curve scalar mul to use two limbs to properly encode the scalar field ([#2105](https://github.com/AztecProtocol/barretenberg/issues/2105)) ([2281507](https://github.com/AztecProtocol/barretenberg/commit/2281507f31ea3a34b42a3ae278d7071f7e08573a))
* Remaining refs to clang15 ([#2077](https://github.com/AztecProtocol/barretenberg/issues/2077)) ([4c456a2](https://github.com/AztecProtocol/barretenberg/commit/4c456a2b196282160fd69bead6a1cea85289af37))

## [0.5.1](https://github.com/AztecProtocol/barretenberg/compare/barretenberg-v0.5.0...barretenberg-v0.5.1) (2023-09-05)


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.5.1 x-release-please-version
v0.5.2 x-release-please-version
2 changes: 1 addition & 1 deletion barretenberg-wasm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ in
stdenv.mkDerivation
{
pname = "barretenberg.wasm";
version = "0.5.1"; # x-release-please-version
version = "0.5.2"; # x-release-please-version

src = ./cpp;

Expand Down
2 changes: 1 addition & 1 deletion barretenberg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ in
buildEnv.mkDerivation
{
pname = "libbarretenberg";
version = "0.5.1"; # x-release-please-version
version = "0.5.2"; # x-release-please-version

src = ./cpp;

Expand Down
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24)
project(
Barretenberg
DESCRIPTION "BN254 elliptic curve library, and PLONK SNARK prover"
VERSION 0.5.1 # x-release-please-version
VERSION 0.5.2 # x-release-please-version
LANGUAGES CXX C
)

Expand Down
7 changes: 7 additions & 0 deletions ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.2](https://github.com/AztecProtocol/barretenberg/compare/barretenberg.js-v0.5.1...barretenberg.js-v0.5.2) (2023-09-07)


### Miscellaneous Chores

* **barretenberg.js:** Synchronize barretenberg versions

## [0.5.1](https://github.com/AztecProtocol/barretenberg/compare/barretenberg.js-v0.5.0...barretenberg.js-v0.5.1) (2023-09-05)


Expand Down
2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aztec/bb.js",
"version": "0.5.1",
"version": "0.5.2",
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/circuits/cpp/barretenberg/ts",
"license": "MIT",
"type": "module",
Expand Down