Governance: Update spl-gov changelog and version to 3.1.1 (#4140)

This commit is contained in:
Sebastian Bor 2023-04-25 18:05:34 +01:00 committed by GitHub
parent 9ab3cdc93a
commit 139ed61e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 6 deletions

2
Cargo.lock generated
View File

@ -6065,7 +6065,7 @@ dependencies = [
[[package]]
name = "spl-governance"
version = "3.1.0"
version = "3.1.1"
dependencies = [
"arrayref",
"assert_matches",

View File

@ -1,9 +1,25 @@
# SPL Governance Changelog
## v3.0.0 - development
## v3.1.1 - 25 Apr 2022
- Support separate vote threshold for `Council`
- `Council` Veto vote
- Weighted multi choice voting
- Revoking own membership
## v3.1.0 - 13 Dec 2022
- Council governance plugins
- Non transferable and revokable membership
- Veto vote
- Council wallet rules
- approval quorum
- vote tipping
- veto threshold
- Explicitly disabled options
- community/council vote
- community/council proposals
- Absolute max supply
- Proposal cool off time
- Proposal deposit
## v2.2.4 - 24 Mar 2022

View File

@ -21,7 +21,7 @@ serde = "1.0.127"
serde_derive = "1.0.103"
solana-program = "1.14.12"
spl-token = { version = "3.5", path = "../../../token/program", features = [ "no-entrypoint" ] }
spl-governance= { version = "3.1.0", path ="../../program", features = [ "no-entrypoint" ]}
spl-governance= { version = "3.1.1", path ="../../program", features = [ "no-entrypoint" ]}
spl-governance-tools= { version = "0.1.3", path ="../../tools"}
spl-governance-addin-api= { version = "0.1.3", path ="../../addin-api"}
thiserror = "1.0"

View File

@ -1,6 +1,6 @@
[package]
name = "spl-governance"
version = "3.1.0"
version = "3.1.1"
description = "Solana Program Library Governance Program"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"