Skip to content

Commit

Permalink
v18 changelog (#1095)
Browse files Browse the repository at this point in the history
Changelog for v18 upgrade
  • Loading branch information
sampocs authored Jan 27, 2024
1 parent 74d8784 commit 4913e1d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
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

0 comments on commit 4913e1d

Please sign in to comment.