Skip to content

Commit 2c700fa

Browse files
authored
Merge pull request #463 from dusk-network/release-0.6.1
Release version 0.6.1
2 parents 8e431bf + 6208a50 commit 2c700fa

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.1] - 12-03-21
11+
12+
### Changed
13+
14+
- Change `PublicParameters::trim` visibility to `pub`. [#460](https://github.com/dusk-network/plonk/issues/460)
15+
- Change `StandardComposer::construct_dense_pi_vec` visibility to `pub`.[#461](https://github.com/dusk-network/plonk/issues/461)
16+
1017
## [0.6.0] - 11-03-21
1118

1219
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dusk-plonk"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Kevaundray Wedderburn <[email protected]>",
55
"Luke Pearson <[email protected]>",
66
"CPerezz <[email protected]>"]

src/commitment_scheme/kzg10/srs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl PublicParameters {
143143
/// polynomials up to the and including the truncated degree.
144144
/// Returns an error if the truncated degree is larger than the public
145145
/// parameters configured degree.
146-
pub(crate) fn trim(
146+
pub fn trim(
147147
&self,
148148
truncated_degree: usize,
149149
) -> Result<(CommitKey, OpeningKey), Error> {

src/constraint_system/composer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ impl StandardComposer {
9090

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

0 commit comments

Comments
 (0)