Skip to content

Commit

Permalink
chore: release v7.3.0-rc3 (#538)
Browse files Browse the repository at this point in the history
Co-authored-by: fx0x55 <80245546+fx0x55@users.noreply.github.com>
  • Loading branch information
zakir-code and fx0x55 committed May 31, 2024
1 parent 7abcabf commit f0ec405
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 35 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
- "v[0-9]+\\.[0-9]+\\.[0-9]+"
- "v[0-9]+\\.[0-9]+\\.[0-9]+-rc[0-9]+"

permissions: write-all

jobs:
release:
runs-on: ubuntu-latest
Expand Down
41 changes: 8 additions & 33 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,14 @@
<!--
Guiding Principles:
Changelogs are for humans, not machines.
There should be an entry for every single version.
The same types of changes should be grouped.
Versions and sections should be linkable.
The latest version comes first.
The release date of each version is displayed.
Mention whether you follow Semantic Versioning.
Usage:
Change log entries are to be added to the Unreleased section under the
appropriate stanza (see below). Each entry should ideally include a tag and
the Github issue reference in the following format:
* (<tag>) \#<issue-number> message
The issue numbers will later be link-ified during the release process so you do
not have to worry about including a link manually, but you can if you wish.
Types of changes (Stanzas):
# Change log

"Features" for new features.
"Improvements" for changes in existing functionality.
"Deprecated" for soon-to-be removed features.
"Bug Fixes" for any bug fixes.
"Client Breaking" for breaking CLI commands and REST routes used by end-users.
"API Breaking" for breaking exported APIs used by developers building on SDK.
"State Machine Breaking" for any changes that result in a different AppState given same genesisState and txList.
## [v7.3.0-rc3]

Ref: https://keepachangelog.com/en/1.0.0/
-->
* Improved refund methods to return assets to the refund address when cross-chain transactions fail
* Simplified `MsgBridgeCallResultClaim`
* Implement `fxcored export-delegates` command
* Fixed `MsgBridgeCallClaim` not broadcasting event in fxcore
* Clean up incompatible attestations in the testnet

# Change log
---

## [v7.2.0-rc2]

Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v7/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var Upgrade = upgrades.Upgrade{
UpgradeName: "v7.2.x",
UpgradeName: "v7.3.x",
CreateUpgradeHandler: CreateUpgradeHandler,
StoreUpgrades: func() *storetypes.StoreUpgrades {
return &storetypes.StoreUpgrades{}
Expand Down
2 changes: 2 additions & 0 deletions cmd/doctor.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ func checkBlockchainData(bc blockchain, genesisId, privValidatorKeyFile string)
fmt.Printf("%sVersion: V7.0\n", SPACE)
} else if blockHeight < fxtypes.TestnetBlockHeightV72 {
fmt.Printf("%sVersion: V7.1\n", SPACE)
} else if blockHeight < fxtypes.TestnetBlockHeightV73 {
fmt.Printf("%sVersion: V7.2\n", SPACE)
}
}
return plan != nil, nil
Expand Down
2 changes: 1 addition & 1 deletion solidity/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@functionx_io/contracts",
"description": "Smart Contract library for Solidity",
"version": "0.2.1",
"version": "0.2.2",
"files": [
"/contracts/**/*.sol",
"package.json",
Expand Down
1 change: 1 addition & 0 deletions types/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const (
TestnetBlockHeightV7 = 12_961_500
TestnetBlockHeightV71 = 14_369_500
TestnetBlockHeightV72 = 14_389_000
TestnetBlockHeightV73 = 14_551_500
)

var (
Expand Down

0 comments on commit f0ec405

Please sign in to comment.