Governance: Update spl-gov changelog and version to 3.1.1 (#4140)
This commit is contained in:
parent
9ab3cdc93a
commit
139ed61e84
|
@ -6065,7 +6065,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "spl-governance"
|
||||
version = "3.1.0"
|
||||
version = "3.1.1"
|
||||
dependencies = [
|
||||
"arrayref",
|
||||
"assert_matches",
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue