Skip to content

Commit

Permalink
chore: version 2.0.0 (#632)
Browse files Browse the repository at this point in the history
## Description

Prepares the code to be tagged for `v2.0.0`.

<!-- Add a description of the changes that this PR introduces and the files that
are the most critical to review. -->

---

### Author Checklist

*All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.*

I have...

- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://docs.cosmos.network/v0.44/building-modules/intro.html)
- [ ] included the necessary unit and integration [tests](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#testing)
- [x] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go code](https://blog.golang.org/godoc)
- [ ] updated the relevant documentation or specification
- [ ] reviewed "Files changed" and left comments if necessary
- [ ] confirmed all CI checks have passed

### Reviewers Checklist

*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*

I have...

- [x] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [x] confirmed all author checklist items have been addressed
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed tests and test coverage
- [ ] reviewed documentation is accurate
- [ ] manually tested (if applicable)
  • Loading branch information
RiccardoM authored Sep 28, 2021
1 parent d6e42b6 commit eb6973b
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 47 deletions.
43 changes: 23 additions & 20 deletions .changeset/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ github_repo: github.com/desmos-labs/desmos
version: 1.0.3

types:
# Types shown inside the CHANGELOG
- code: feat
title: Features
description: A new feature
hide: false
- code: fix
title: Bug Fixes
description: A bug fix
hide: false
- code: revert
title: Reverts
description: Reverts a previous commit
hide: false
- code: refactor
title: Code Refactoring
description: A code change that neither fixes a bug nor adds a feature
hide: true
- code: perf
title: Performance Improvements
description: A code change that improves performance
Expand All @@ -18,6 +23,12 @@ types:
title: Dependencies
description: Updates a third party dependencies
hide: false

# Hidden types
- code: refactor
title: Code Refactoring
description: A code change that neither fixes a bug nor adds a feature
hide: true
- code: build
title: Builds
description: 'Changes that affect the build system or external dependencies (example
Expand All @@ -36,14 +47,6 @@ types:
title: Chores
description: Other changes that don't modify src or test files
hide: true
- code: feat
title: Features
description: A new feature
hide: false
- code: fix
title: Bug Fixes
description: A bug fix
hide: false
- code: docs
title: Documentation
description: Documentation only changes
Expand All @@ -55,11 +58,11 @@ types:
hide: true

modules:
- id: "x/profiles"
description: "Profiles"
- id: "x/posts"
description: "Posts"
- id: "x/subspaces"
description: "Subspaces"
- id: "other"
description: "Other"
- id: x/profiles
description: Profiles
- id: x/posts
description: Posts
- id: x/subspaces
description: Subspaces
- id: none
description: Other

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/on-chain-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 30
env:
GENESIS_DESMOS_VERSION: "v1.0.4"
GENESIS_URL: "https://raw.githubusercontent.com/RiccardoM/desmos-states/master/morpheus-apollo-22003141.json"
GENESIS_URL: "https://raw.githubusercontent.com/RiccardoM/desmos-states/master/morpheus-apollo-2-2182000.json"
UPGRADE_NAME: "v2.0.0"
steps:
- name: Checkout 🛎️
Expand Down
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-->

# Changelog
## [Unreleased]
- Renamed `PollData` and `PollAnswer` to `Poll` and `ProvidedAnswer` ([\#536]((https://github.com/desmos-labs/desmos/issues/536)))
## Version 2.0.0
### Features
#### Profiles
* ([\#539](https://github.com/desmos-labs/desmos/pull/539)) Made profiles query user parameter optional

### Bug Fixes
#### Profiles
* ([\#598](https://github.com/desmos-labs/desmos/pull/598)) Fixed the help of the `desmos tx profiles save` command

### Dependencies
* ([\#595](https://github.com/desmos-labs/desmos/pull/595)) Updated Cosmos to v0.44.0
* ([\#619](https://github.com/desmos-labs/desmos/pull/619)) Updated Band Protocol to v2.3.1

## Version 1.0.3
### Bug fixes
- Fixed the help of the `desmos tx profiles save` command
Expand Down

0 comments on commit eb6973b

Please sign in to comment.