-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGELOG
132 lines (89 loc) · 4.13 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# CHANGELOG
## v2.1.0
Date: December 12th, 2024
### BUG FIXES
- Disable voting in next round with locks that were used in previous round to vote for longer deployment proposal through the "auto-voting" mechanism.
([\#203](https://github.com/informalsystems/hydro/pull/203))
### FEATURES
- Allow proposals to be created in future rounds.
([\#193](https://github.com/informalsystems/hydro/pull/193))
- Store the lockup schedule as a constant to allow programmatic updates.
([\#194](https://github.com/informalsystems/hydro/pull/194))
## v2.0.4
Date: December 9th, 2024
### BUG FIXES
- Remove contracts migration code from version v1.1.x to version v2.0.2 and bump contracts version to v2.0.4.
([\#200](https://github.com/informalsystems/hydro/pull/200))
## v2.0.3
Date: December 9th, 2024
### BUG FIXES
- Fix a bug that would prevent users from switching their vote under specific circumstances.
([\#195](https://github.com/informalsystems/hydro/pull/195))
## v2.0.2
Date: November 28th, 2024
### BUG FIXES
- Add missing response attributes.
([\#181](https://github.com/informalsystems/hydro/pull/181))
## v2.0.1
Date: November 25th, 2024
### BUG FIXES
- Fix user votes query to take into account only active round validators and their power ratios.
([\#174](https://github.com/informalsystems/hydro/pull/174))
### FEATURES
- Migrate Hydro & Tribute contracts to v2.0.1.
([\#170](https://github.com/informalsystems/hydro/pull/170))
- Do not allow short lockups to vote on proposals requesting longer liquidity deployment.
([\#175](https://github.com/informalsystems/hydro/pull/175))
- Rename "bid duration" to "deployment duration".
([\#176](https://github.com/informalsystems/hydro/pull/176))
- Allow longer locks in pilot rounds.
([\#177](https://github.com/informalsystems/hydro/pull/177))
## v2.0.0
Date: November 18th, 2024
### FEATURES
- Adjusts tributes to only be claimable if their proposal received a non-zero fund deployment.
([\#164](https://github.com/informalsystems/hydro/pull/164))
- Add a minimum liquidity request value to proposals.
([\#164](https://github.com/informalsystems/hydro/pull/164))
- Allow whitelist admins to register performed liquidity deployments in the Hydro contract.
([\#164](https://github.com/informalsystems/hydro/pull/164))
- Allow bids to set a custom duration they would like to receive liquidity for.
([\#165](https://github.com/informalsystems/hydro/pull/165))
## v1.1.0
Date: October 22nd, 2024
### FEATURES
- Adjust tribute refunding condition.
([\#146](https://github.com/informalsystems/hydro/pull/146))
- Allow refreshing multiple locks at once
([\#149](https://github.com/informalsystems/hydro/pull/149))
- Adds a migration to change the start of the first contract on an instantiated contract
([\#156](https://github.com/informalsystems/hydro/pull/156))
- Fractional voting support
([\#157](https://github.com/informalsystems/hydro/pull/157))
## v1.0.3
Date: October 15th, 2024
<!--
Add a summary for the release here.
If you don't change this message, or if this file is empty, the release
will not be created. -->
### BUG FIXES
- Forbid users to claim tributes that belong to other proposals than the one user voted on.
([\#129](https://github.com/informalsystems/hydro/pull/129))
- fix: do not insert proposal into PROPS_BY_SCORE on proposal creation.
([\#135](https://github.com/informalsystems/hydro/pull/135))
### FEATURES
- Update proposal powers when user that voted locks or relocks tokens.
([\#128](https://github.com/informalsystems/hydro/pull/128))
- Add 'pilot round mode' with a different lock duration.
([\#137](https://github.com/informalsystems/hydro/pull/137))
# v1.0.0
Date: September 24th, 2023
This is the first version of the auction and tribute contracts for the Hydro liquidity auction platform.
It includes:
* The main _Hydro_ contract, where:
* Users can lock, relock, and unlock staked ATOM in the form of LSM shares
* Projects can create proposals to deploy liquidity
* Users can vote on proposals
* The _Tribute_ contract, where:
* Projects can add tributes to their proposals
* Users can claim tributes for the proposals that they voted on