Skip to content

Commit

Permalink
upgrade version to v1.1.0 and add changelog (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed May 28, 2024
1 parent 47cb9a2 commit 9ec7b0a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 12 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

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.1.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.1.0] - 2024-05-28

### Added

- Support configuring contract address lengths less than the default 32 bytes.

### Fixes

- Updated some dependencies and replaced deprecated functions.

## [1.0.0] - 2023-07-04

### Added

- Initial release.
14 changes: 7 additions & 7 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/DA0-DA0/polytone"
rust-version = "1.67"
version = "1.0.2"
version = "1.1.0"

[profile.release]
codegen-units = 1
Expand All @@ -21,10 +21,10 @@ panic = 'abort'
rpath = false

[workspace.dependencies]
polytone = { path = "packages/polytone", version = "1.0.0" }
polytone-proxy = { path = "contracts/main/proxy", version = "1.0.0" }
polytone-note = { path = "contracts/main/note", version = "1.0.0" }
polytone-voice = { path = "contracts/main/voice", version = "1.0.0" }
polytone = { path = "packages/polytone", version = "1.1.0" }
polytone-proxy = { path = "contracts/main/proxy", version = "1.1.0" }
polytone-note = { path = "contracts/main/note", version = "1.1.0" }
polytone-voice = { path = "contracts/main/voice", version = "1.1.0" }

cosmwasm-schema = "1.5.4"
cosmwasm-std = { version = "1.5.4", features = ["ibc3", "staking"] }
Expand Down

0 comments on commit 9ec7b0a

Please sign in to comment.