Skip to content

Commit 11e6980

Browse files
authored
docs: reproducible build (#35)
Also add CL entry Please go the the `Preview` tab and select the appropriate sub-template: * [Production code](?expand=1&template=production.md) - for types `fix`, `feat`, and `refactor`. * [Docs](?expand=1&template=docs.md) - for documentation changes. * [Others](?expand=1&template=others.md) - for changes that do not affect production code.
1 parent 432d5ba commit 11e6980

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG.md

+28-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# CHANGELOG
22

3+
## Unreleased
4+
5+
*Release date*
6+
7+
### API BREAKING
8+
9+
### BUG FIXES
10+
11+
### DEPENDENCIES
12+
13+
### FEATURES
14+
15+
* Add reproducible builds ([#34](https://github.com/atomone-hub/govgen/pull/34))
16+
17+
## v1.0.1
18+
19+
*February 26st, 2024*
20+
21+
### API BREAKING
22+
23+
### BUG FIXES
24+
25+
### DEPENDENCIES
26+
27+
### FEATURES
28+
29+
* `InitChainer` auto stakes uniformly to validators at genesis ([#26](https://github.com/atomone-hub/govgen/pull/26)).
30+
331
## v1.0.0
432

533
*February 21st, 2024*
@@ -20,7 +48,5 @@
2048
([#13](https://github.com/atomone-hub/govgen/pull/13)).
2149
* Adapt voting period to proposal type.
2250
([#16](https://github.com/atomone-hub/govgen/pull/16)).
23-
* `InitChainer` auto stakes uniformly to validators at genesis
24-
([#26](https://github.com/atomone-hub/govgen/pull/26)).
2551

2652
### STATE BREAKING

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,11 @@ The following modifications have been made to the Cosmos Hub software to create
2525
8. Removed community spend proposal
2626
9. Allowed setting different voting periods for different proposal types
2727
10. Stake automatically 50% of balance for accounts that have more than 25 $GOVGEN at genesis initialization. The resulting stake distribution will provide approximately the same voting power to all genesis validators. Accounts will automatically stake to a maximum of 5 validators if 50% of the balance is less than 500 $GOVGEN, a maximum of 10 validators if less than 10,000 $GOVGEN and a maximum of 20 validators if more, uniformly. The number of validators elected for the delegations is not a constant because it depends on the state of the distribution.
28+
29+
## Reproducible builds
30+
31+
An effort has been made to make it possible to build the exact same binary
32+
locally as the Github Release section. To do this, checkout to the expected
33+
version and then simply run `make build` (which will output the binary to the
34+
`build` directory) or `make install`. The resulted binary should have the same
35+
sha256 hash than the one from the Github Release section.

0 commit comments

Comments
 (0)