Skip to content

Update V4 RELEASE.md #2992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 10, 2025
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# v4.0.0

## Release Notes

This release focuses on upgrading Cosmos-SDK to v0.50.11-lsm and adjusting related dependencies.

## What's Changed

* refactor: bump up irismod by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2950>
* feat: upgrade to v4 by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2963>
* Upgrade cosmos-sdk in irishub to v0.50.10 by @wangjiulian in <https://github.com/irisnet/irishub/pull/2975>
* feat: add v4 upgrade plan by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2982>
* update simulation test by @wangjiulian in <https://github.com/irisnet/irishub/pull/2983>
* Update dependencies by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2985>
* chore(Dockerfile): update dockerfile by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2986>
* fix: prioritize upgrade module in module manager by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2987>
* fix: fix start command by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2988>
* chore: update ethermint by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2989>
* update irismod service mod by @wangjiulian in <https://github.com/irisnet/irishub/pull/2990>
* fix: fix query txs error by @wangjiulian in <https://github.com/irisnet/irishub/pull/2991>
* deps: update go.mod by @dreamer-zq in <https://github.com/irisnet/irishub/pull/2993>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Detailed "What's Changed" Section with Inconsistency Check

The bullet list in the "What's Changed" section provides clear and detailed updates for this release. However, note that line 11 states "* Upgrade cosmos-sdk in irishub to v0.50.10" which conflicts with the release note in line 5 referencing v0.50.11-lsm. Please verify and update the version information to ensure consistency.


Below is a shell script to inspect the relevant parts of the RELEASE.md file. This script will print the header (which may contain the reference to v0.50.11‑lsm) and the "What's Changed" section (which shows v0.50.10) and then search for both version strings. This will help verify whether there’s an inconsistency that needs to be resolved.

Next Steps:
Once you run the script, please review the outputs. If the header (or another section) indeed shows v0.50.11-lsm while the "What's Changed" section shows v0.50.10, update the version information to be consistent across the file.



🏁 Script executed:

#!/bin/bash
# Display header lines (lines 1-6) to check for any version reference like "v0.50.11-lsm"
echo "Header lines (1-6) of RELEASE.md:"
sed -n '1,6p' RELEASE.md
echo "------------------------------"

# Display the "What's Changed" section (lines 7-22) from the file
echo "'What's Changed' section (lines 7-22):"
sed -n '7,22p' RELEASE.md
echo "------------------------------"

# Search for any mention of cosmos-sdk with the '-lsm' version (v0.50.11-lsm)
echo "Searching for 'v0.50.11-lsm' in RELEASE.md:"
grep "v0.50.11-lsm" -n RELEASE.md || echo "No 'v0.50.11-lsm' found."
echo "------------------------------"

# Search for cosmos-sdk version 0.50.10 in RELEASE.md
echo "Searching for 'v0.50.10' in RELEASE.md:"
grep "v0.50.10" -n RELEASE.md || echo "No 'v0.50.10' found."
echo "------------------------------"

Length of output: 2478


Action Required: Align Cosmos-SDK Version Across RELEASE.md

Please update the "What's Changed" section to ensure consistency with the header. The header (line 3) indicates the Cosmos-SDK upgrade is to v0.50.11-lsm, while the bullet on line 11 currently states v0.50.10. Update the version in the bullet list to match the header version to avoid confusion.

## New Contributors

* @wangjiulian made their first contribution in <https://github.com/irisnet/irishub/pull/2975>

**Full Changelog**: <https://github.com/irisnet/irishub/compare/v3.1.1...v4.0.0>

# v3.1.1

## Release Notes
Expand Down