Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkorin committed Feb 14, 2024
1 parent 5848f17 commit b129cb1
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion contracts/governance/DelegateDecayMeasure.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Vote weight measure with delegation and decay
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/DelegateMeasure.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Vote weight measure with delegation
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/DelegatedStaking.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title yETH delegated staking contract
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/Executor.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Executor
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/GenericGovernor.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Generic governor
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/InclusionIncentives.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Incentives for inclusion vote
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/InclusionRound.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Inclusion round
@author 0xkorin, Yearn Finance
Expand Down
3 changes: 2 additions & 1 deletion contracts/governance/InclusionVote.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Inclusion vote
@author 0xkorin, Yearn Finance
Expand Down Expand Up @@ -414,6 +414,7 @@ def disable():
No new applications are accepted and no-one is allowed to vote
"""
assert msg.sender == self.management
assert not self._vote_open()
self.enabled = False
log Enable(False)

Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/LaunchMeasure.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Launch vote weight measure
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/OwnershipProxy.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Ownership proxy
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/PoolGovernor.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Pool governor
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/SnapshotToken.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Snapshot vote weight token
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/WeightIncentives.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Incentives for weight vote
@author 0xkorin, Yearn Finance
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/WeightVote.vy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @version 0.3.7
# @version 0.3.10
"""
@title Weight vote
@author 0xkorin, Yearn Finance
Expand Down

0 comments on commit b129cb1

Please sign in to comment.