Skip to content

Commit

Permalink
Merge pull request #159 from paritytech/grandpa-0.16.1
Browse files Browse the repository at this point in the history
bump version to 0.16.1
  • Loading branch information
andresilva authored Jan 5, 2023
2 parents fc675c3 + 23f2dd2 commit 218cdc6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "finality-grandpa"
version = "0.16.0"
version = "0.16.1"
description = "PBFT-based finality gadget for blockchains"
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ unlicensed = "deny"
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"Apache-2.0",
"Unicode-DFS-2016",
]
# List of explictly disallowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
Expand Down
2 changes: 1 addition & 1 deletion src/voter/voting_round.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ where

/// Get access to the underlying environment.
pub(super) fn env(&self) -> &E {
&*self.env
&self.env
}

/// Get the round number.
Expand Down

0 comments on commit 218cdc6

Please sign in to comment.