Skip to content

Commit

Permalink
Release 0.0.45
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jhernand committed Dec 3, 2021
1 parent 868dfb2 commit 69151aa
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pkg/info/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ limitations under the License.

package info

const Version = "0.0.44"
const Version = "0.0.45"

0 comments on commit 69151aa

Please sign in to comment.