diff --git a/CHANGELOG.md b/CHANGELOG.md index d31efc6713..41cf74d545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION b/VERSION index 7e5fe9847d..cbd216fca4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.11.0-dev-1 \ No newline at end of file +0.10.16 \ No newline at end of file diff --git a/actions/view-changelog.sh b/actions/view-changelog.sh new file mode 100755 index 0000000000..58e484d6e2 --- /dev/null +++ b/actions/view-changelog.sh @@ -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 diff --git a/cliff.toml b/cliff.toml index 6c7c9e8c69..7df27c9db4 100644 --- a/cliff.toml +++ b/cliff.toml @@ -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