Skip to content

Commit

Permalink
Merge pull request #406 from Metaswitch/release-2.0.1
Browse files Browse the repository at this point in the history
Release 2.0.1
  • Loading branch information
maxdymond committed May 15, 2024
2 parents 77198f7 + 218fc4e commit 8305076
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
if: github.ref_type == 'tag'
needs:
- build
# Required to publish a release
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install rust
Expand Down Expand Up @@ -100,7 +103,6 @@ jobs:
uses: softprops/action-gh-release@v2
with:
body_path: release.txt
token: ${{ secrets.PAT_GITHUB }}
files: |
floki*.zip
floki*.tar.gz
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Status: Available for use

### Fixed

## [2.0.1] - 2024-05-15

### Fixed
- Fix publishing releases

## [2.0.0] - 2024-05-15

### Breaking Changes
Expand Down Expand Up @@ -357,7 +362,8 @@ Status: Available for use
- Initial primitive version
### Changed

[unreleased]: https://github.com/Metaswitch/floki/compare/2.0.0...HEAD
[unreleased]: https://github.com/Metaswitch/floki/compare/2.0.1...HEAD
[2.0.1]: https://github.com/Metaswitch/floki/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/Metaswitch/floki/compare/1.2.1...2.0.0
[1.2.1]: https://github.com/Metaswitch/floki/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/Metaswitch/floki/compare/1.1.0...1.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["docker"]
categories = ["command-line-utilities"]
license = "MIT"

version = "2.0.0"
version = "2.0.1"
authors = ["Richard Lupton <richard.lupton@gmail.com>",
"Max Dymond <max.dymond@metaswitch.com>"]
edition = '2018'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ Precompiled binaries can be downloaded from the releases page (for linux and OSX
To obtain `curl` and extract the latest linux binary directly in your shell, run

```shell
$ curl -L https://github.com/Metaswitch/floki/releases/download/2.0.0/floki-2.0.0-linux.tar.gz | tar xzvf -
$ curl -L https://github.com/Metaswitch/floki/releases/download/2.0.1/floki-2.0.1-linux.tar.gz | tar xzvf -
```

You should be able to run `floki` from your working directory:

```shell
$ ./floki --version
floki 2.0.0
floki 2.0.1
```

Move it onto your path to run it from anywhere. E.g.
Expand Down
2 changes: 1 addition & 1 deletion announce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo "Announce changes to the world!"

VERSION=$(tomlq -r '.package.version' Cargo.toml)
VERSION=$(cargo get package.version)
echo "Version: $VERSION"

docker run \
Expand Down
2 changes: 1 addition & 1 deletion docs/content/documentation/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Precompiled binaries for linux and OSX can be downloaded from the [releases](htt
For example, to obtain the latest binary with `curl` and extract it, run

```shell
$ curl -L https://github.com/Metaswitch/floki/releases/download/2.0.0/floki-2.0.0-linux.tar.gz | tar xzvf -
$ curl -L https://github.com/Metaswitch/floki/releases/download/2.0.1/floki-2.0.1-linux.tar.gz | tar xzvf -
```

in a shell. You should now be able to run `floki` from your working directory:
Expand Down

0 comments on commit 8305076

Please sign in to comment.