From e4f0cd1705cee877fb5c00403ce19a1356c79618 Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Fri, 7 Jul 2023 17:07:37 +0100 Subject: [PATCH] Release 1.2.0 Signed-off-by: Max Dymond --- CHANGELOG.md | 11 ++++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- docs/content/documentation/getting-started.md | 2 +- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3647846..5667d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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="")` in order to load values. @@ -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 @@ -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 diff --git a/Cargo.lock b/Cargo.lock index b29fd75..1eb53b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -238,7 +238,7 @@ dependencies = [ [[package]] name = "floki" -version = "1.1.0" +version = "1.2.0" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index a7c7e33..3be40dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["docker"] categories = ["command-line-utilities"] license = "MIT" -version = "1.1.0" +version = "1.2.0" authors = ["Richard Lupton ", "Max Dymond "] edition = '2018' diff --git a/README.md b/README.md index 4781afb..aae9cb3 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/content/documentation/getting-started.md b/docs/content/documentation/getting-started.md index 3455988..2727021 100644 --- a/docs/content/documentation/getting-started.md +++ b/docs/content/documentation/getting-started.md @@ -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: