Skip to content
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

v18 changelog #1095

Merged
merged 3 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- GH ACTIONS TEMPLATE - INSERT NEW VERSION HERE -->

## [v18.0.0](https://github.com/Stride-Labs/stride/releases/tag/v18.0.0) - 2024-01-26

### On-Chain changes
1. Query redemption records for multiple addresses ([#1075](https://github.com/Stride-Labs/stride/pull/1075))
2. Remove address validation from query ([#1079](https://github.com/Stride-Labs/stride/pull/1079))
3. reset delegation change in progress to 0 when a channel is restored ([#1074](https://github.com/Stride-Labs/stride/pull/1074))
4. Feature ([#1087](https://github.com/Stride-Labs/stride/pull/1087))
5. feature fee address ([#1091](https://github.com/Stride-Labs/stride/pull/1091))
6. V18 Upgrade Migrations ([#1084](https://github.com/Stride-Labs/stride/pull/1084))
7. v18 Import Paths ([#1093](https://github.com/Stride-Labs/stride/pull/1093))


## [v17.0.0](https://github.com/Stride-Labs/stride/releases/tag/v17.0.0) - 2024-01-11

### On-Chain changes
Expand Down
12 changes: 6 additions & 6 deletions scripts/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ done
echo -e "\n## [$NEW_VERSION](https://github.com/Stride-Labs/stride/releases/tag/$NEW_VERSION) - $CURRENT_DATE" > $TEMP_MAIN_CHANGELOG

# If there were on-chain changes, add the "On-Chain" section
if [[ -n "$TEMP_ON_CHAIN_CHANGELOG" ]]; then
if [[ -s "$TEMP_ON_CHAIN_CHANGELOG" ]]; then
echo -e "\n### On-Chain changes" >> $TEMP_MAIN_CHANGELOG
cat "$TEMP_ON_CHAIN_CHANGELOG" >> $TEMP_MAIN_CHANGELOG
fi

# If there were off-chain changes, add the "Off-Chain" section
if [[ -n "$TEMP_OFF_CHAIN_CHANGELOG" ]]; then
if [[ -s "$TEMP_OFF_CHAIN_CHANGELOG" ]]; then
echo -e "\n### Off-Chain changes" >> $TEMP_MAIN_CHANGELOG
cat "$TEMP_OFF_CHAIN_CHANGELOG" >> $TEMP_MAIN_CHANGELOG
fi
Expand All @@ -113,7 +113,7 @@ echo "" >> $TEMP_MAIN_CHANGELOG
sed -i -e "/$MAIN_CHANGELOG_INSERT_STATEMENT/r $TEMP_MAIN_CHANGELOG" $MAIN_CHANGELOG

# Finally, cleanup all the temp files
rm $TEMP_COMMITS
rm $TEMP_MAIN_CHANGELOG
rm $TEMP_ON_CHAIN_CHANGELOG
rm $TEMP_OFF_CHAIN_CHANGELOG
rm -f $TEMP_COMMITS
rm -f $TEMP_MAIN_CHANGELOG
rm -f $TEMP_ON_CHAIN_CHANGELOG
rm -f $TEMP_OFF_CHAIN_CHANGELOG
Loading