Skip to content

Commit

Permalink
Merge branch 'main' into 509-improve-token-denom-handling-for-ibc-tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
dib542 committed Jan 24, 2024
2 parents 7148099 + a8460f5 commit b8eacf2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [1.0.0](https://github.com/duality-labs/duality-web-app/compare/v0.3.52...v1.0.0) (2024-01-23)


### ⚠ BREAKING CHANGES

* allow new major versions with Semantic Release (#522)

### Features

* allow new major versions with Semantic Release ([#522](https://github.com/duality-labs/duality-web-app/issues/522)) ([a198369](https://github.com/duality-labs/duality-web-app/commit/a1983699abb12bfd1640db07c2248c6a6484f402))

## [0.3.52](https://github.com/duality-labs/duality-web-app/compare/v0.3.51...v0.3.52) (2024-01-23)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "duality-webapp",
"homepage": "https://app.duality.xyz",
"version": "0.3.52",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ module.exports = {
// see default rules: https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
releaseRules: [
// while in "alpha" mode don't increment the major version
{ breaking: true, release: 'minor' },
{ type: 'feat', release: 'patch' },
{ breaking: true, release: 'major' },
{ type: 'feat', release: 'minor' },
{ type: 'fix', release: 'patch' },
{ type: 'perf', release: 'patch' },
],
Expand Down

0 comments on commit b8eacf2

Please sign in to comment.