Skip to content

Commit

Permalink
Merge pull request #463 from dusk-network/release-0.6.1
Browse files Browse the repository at this point in the history
Release version 0.6.1
  • Loading branch information
CPerezz authored Mar 12, 2021
2 parents 8e431bf + 6208a50 commit 2c700fa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1] - 12-03-21

### Changed

- Change `PublicParameters::trim` visibility to `pub`. [#460](https://github.com/dusk-network/plonk/issues/460)
- Change `StandardComposer::construct_dense_pi_vec` visibility to `pub`.[#461](https://github.com/dusk-network/plonk/issues/461)

## [0.6.0] - 11-03-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-plonk"
version = "0.6.0"
version = "0.6.1"
authors = ["Kevaundray Wedderburn <kevtheappdev@gmail.com>",
"Luke Pearson <luke@dusk.network>",
"CPerezz <carlos@dusk.network>"]
Expand Down
2 changes: 1 addition & 1 deletion src/commitment_scheme/kzg10/srs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl PublicParameters {
/// polynomials up to the and including the truncated degree.
/// Returns an error if the truncated degree is larger than the public
/// parameters configured degree.
pub(crate) fn trim(
pub fn trim(
&self,
truncated_degree: usize,
) -> Result<(CommitKey, OpeningKey), Error> {
Expand Down
2 changes: 1 addition & 1 deletion src/constraint_system/composer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl StandardComposer {

/// Constructs a dense vector of the Public Inputs from the positions and
/// the sparse vector that contains the values.
pub(crate) fn construct_dense_pi_vec(&self) -> Vec<BlsScalar> {
pub fn construct_dense_pi_vec(&self) -> Vec<BlsScalar> {
let mut pi = vec![BlsScalar::zero(); self.n];
self.public_inputs_sparse_store
.iter()
Expand Down

0 comments on commit 2c700fa

Please sign in to comment.