Skip to content

Commit

Permalink
Merge pull request #301 from Metaswitch/release-1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
maxdymond authored Jul 7, 2023
2 parents 3cc2884 + e4f0cd1 commit 18d159a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Status: Available for use

### Breaking Changes

### Added

### Fixed

## [1.2.0] - 2023-07-07

### Added
- Add `yaml` function to tera templating engine so that floki templates
can use `yaml(file="<filepath>")` in order to load values.
Expand All @@ -24,8 +30,6 @@ Status: Available for use
- Switch rust image to `rust:1-alpine3.18` as it's better maintained.
- Combine errors into a single FlokiError enum.

### Fixed

## [1.1.0] - 2023-07-05

### Added
Expand Down Expand Up @@ -336,7 +340,8 @@ Status: Available for use
- Initial primitive version
### Changed

[unreleased]: https://github.com/Metaswitch/floki/compare/1.1.0...HEAD
[unreleased]: https://github.com/Metaswitch/floki/compare/1.2.0...HEAD
[1.2.0]: https://github.com/Metaswitch/floki/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/Metaswitch/floki/compare/1.0.1...1.1.0
[1.0.1]: https://github.com/Metaswitch/floki/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/Metaswitch/floki/compare/0.9.1...1.0.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 = "1.1.0"
version = "1.2.0"
authors = ["Richard Lupton <[email protected]>",
"Max Dymond <[email protected]>"]
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/1.1.0/floki-1.1.0-linux.tar.gz | tar xzvf -
$ curl -L https://github.com/Metaswitch/floki/releases/download/1.2.0/floki-1.2.0-linux.tar.gz | tar xzvf -
```

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

```shell
$ ./floki --version
floki 1.1.0
floki 1.2.0
```

Move it onto your path to run it from anywhere. E.g.
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/1.1.0/floki-1.1.0-linux.tar.gz | tar xzvf -
$ curl -L https://github.com/Metaswitch/floki/releases/download/1.2.0/floki-1.2.0-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 18d159a

Please sign in to comment.