diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1b1807f..54a3b30fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,3 +35,23 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Changelog + +## [Unreleased] + +## [v1.0.0] - 2022-04-12 + +### Features + +* (crescentd) feat: add `x/liquidity` module +* (crescentd) feat: add `x/liquidstaking` module +* (crescentd) feat: add `x/farming` module +* (crescentd) feat: add `x/mint`(constant inflation) module +* (crescentd) feat: add `x/claim` module +* (sdk) Crescent Core uses a customized Cosmos SDK [v1.0.2-sdk-0.44.5](https://github.com/crescent-network/cosmos-sdk/releases/v1.0.2-sdk-0.44.5). Please check the differences on [here](https://github.com/crescent-network/cosmos-sdk/compare/v0.44.5...v1.0.2-sdk-0.44.5). + * `x/staking` fix: allow delegate only spendable coins + * `x/gov` feat: add additional voting powers hook on tally (liquid governance) + * `x/vesting` feat: periodic vesting msg + * `x/bank` feat: Add dynamic blockedAddrs + +[Unreleased]: https://github.com/crescent-network/crescent/compare/v1.0.0...HEAD +[v1.0.0]: https://github.com/crescent-network/crescent/releases/tag/v1.0.0 \ No newline at end of file diff --git a/README.md b/README.md index f1f186f47..3368ba317 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,11 @@ If you haven't already, install Go by following the [official docs](https://gola **Step 2. Get Crescent Core source code** -Use `git` to retrieve Crescent Core from the [official repo](https://github.com/crescent-network/crescent/) and checkout the `main` branch. This branch contains the latest release, which will install the `crescentd` binary. +Use `git` to retrieve Crescent Core from the [official repo](https://github.com/crescent-network/crescent/) and checkout the `release/v1.0.x` branch. This branch contains the latest release, which will install the `crescentd` binary. ```bash git clone https://github.com/crescent-network/crescent.git -cd crescent && git checkout main +cd crescent && git checkout release/v1.0.x make install ```