Skip to content

Commit

Permalink
chore: rel-0.10.16 (#3588)
Browse files Browse the repository at this point in the history
Prepping a quick release for 0.10.16 to fix macos-sonoma crash


Co-authored-by: Alan Chen <[email protected]>
  • Loading branch information
digikata and digikata committed Oct 7, 2023
1 parent 345ec56 commit abcd1d5
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 7 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Release Notes

## Platform Version 0.11.0 - UNRELEASED
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## Platform Version 0.10.16 - 2023-10-06

### Fixed

* Fluvio crash on downloading in macos-sonoma ([#3584](https://github.com/infinyon/fluvio/issues/3584))

### Other

* FVM `self` subcommand ([#3570](https://github.com/infinyon/fluvio/issues/3570))
* Use utc timestamp in cli-smdk-basic-test ([#3574](https://github.com/infinyon/fluvio/issues/3574))
* Use `surf` and `http-client` as workspace deps ([#3581](https://github.com/infinyon/fluvio/issues/3581))
* Move cli dep to workspace ([#3582](https://github.com/infinyon/fluvio/issues/3582))
* Fvm API Client and updated type definitions ([#3566](https://github.com/infinyon/fluvio/issues/3566))


## Platform Version 0.10.15 - 2023-09-28

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0-dev-1
0.10.16
17 changes: 17 additions & 0 deletions actions/view-changelog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh
# run to view changelog updates
# run with argument "modify" to prepend changelog updates to CHANGELOG.md

set -e

MODIFY="${1:-no}"

LAST_TAG=$(gh release list --limit 1 --exclude-pre-releases | cut -w -f1)
CURR_TAG=$(cat VERSION)
echo git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG}

if [ "$MODIFY" = "modify" ]; then
git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG} -p CHANGELOG.md
else
git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG} | less
fi
7 changes: 2 additions & 5 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@
[changelog]
# changelog header
header = """
# Changelog\n
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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n
# Release Notes\n
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)\n
"""
# template for the changelog body
# https://tera.netlify.app/docs/#introduction
Expand Down

0 comments on commit abcd1d5

Please sign in to comment.