From 69151aabf655f8b5e70ef5f04f926e4b20c2fa6e Mon Sep 17 00:00:00 2001 From: Juan Hernandez Date: Fri, 3 Dec 2021 16:36:39 +0100 Subject: [PATCH] Release 0.0.45 The only functional change in this version is the change from _Markdown_ to _AsciiDoc_. That is not really relevant because the generated documentation isn't currently published. In addition to that there also some changes to the development and build workflows: - Rename `master` branch to `main`. To adapt your local repository to the new branch name run the following commands: ```shell git branch -m master main git fetch origin git branch -u origin/main main git remote set-head origin -a ``` - Rewrite the publish release action in _Python_. - Automatically add changes from `CHANGES.md` to release descriptions. Signed-off-by: Juan Hernandez --- CHANGES.md | 25 +++++++++++++++++++++++++ pkg/info/info.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 71b9155..805a84f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,31 @@ This document describes the relevant changes between releases of the API metamodel. +## 0.0.45 Dec 3 2021 + +The only functional change in this version is the change from _Markdown_ to +_AsciiDoc_. That is not really relevant because the generated documentation +isn't currently published. + +In addition to that there also some changes to the development and build +workflows: + +- Rename `master` branch to `main`. + + To adapt your local repository to the new branch name run the following + commands: + + ```shell + git branch -m master main + git fetch origin + git branch -u origin/main main + git remote set-head origin -a + ``` + +- Rewrite the publish release action in _Python_. + +- Automatically add changes from `CHANGES.md` to release descriptions. + ## 0.0.44 Nov 22 2021 - Check loops in locator paths. diff --git a/pkg/info/info.go b/pkg/info/info.go index d8e09e0..3c9c400 100644 --- a/pkg/info/info.go +++ b/pkg/info/info.go @@ -18,4 +18,4 @@ limitations under the License. package info -const Version = "0.0.44" +const Version = "0.0.45"