From 0606767cbc1bc9f4efa4001bb5b49294c1868224 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 24 Dec 2020 15:58:52 +0000 Subject: [PATCH] Fizzy 0.6.0 Bump version: 0.6.0-dev -> 0.6.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- bindings/rust/Cargo.toml | 2 +- bindings/rust/integration-test/Cargo.toml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 97902b74c..f76e50df7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0-dev +current_version = 0.6.0 tag = True sign_tags = True tag_message = Fizzy {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index fd1909f2c..c00bd70be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Documentation of all notable changes to the **Fizzy** project. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -## [0.6.0] — Unreleased +## [0.6.0] — 2020-12-24 With this release we focus on introducing three major features: - a public C API, @@ -638,7 +638,7 @@ First release! [0.3.0]: https://github.com/wasmx/fizzy/releases/tag/v0.3.0 [0.4.0]: https://github.com/wasmx/fizzy/releases/tag/v0.4.0 [0.5.0]: https://github.com/wasmx/fizzy/releases/tag/v0.5.0 -[0.6.0]: https://github.com/wasmx/fizzy/compare/v0.5.0...master +[0.6.0]: https://github.com/wasmx/fizzy/releases/tag/v0.6.0 [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/ [Semantic Versioning]: https://semver.org diff --git a/CMakeLists.txt b/CMakeLists.txt index 770b8f073..4aeab2fc9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ endif() cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug;Release;Coverage) project(fizzy LANGUAGES CXX C) -set(PROJECT_VERSION 0.6.0-dev) +set(PROJECT_VERSION 0.6.0) set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets. include(TestBigEndian) diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index 6c82a3a87..ff7653254 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fizzy" -version = "0.6.0-dev" +version = "0.6.0" authors = ["The Fizzy Authors"] license = "Apache-2.0" repository = "https://github.com/wasmx/fizzy" diff --git a/bindings/rust/integration-test/Cargo.toml b/bindings/rust/integration-test/Cargo.toml index 342476f30..744346fb5 100644 --- a/bindings/rust/integration-test/Cargo.toml +++ b/bindings/rust/integration-test/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fizzy-integration-test" -version = "0.6.0-dev" +version = "0.6.0" authors = ["The Fizzy Authors"] license = "Apache-2.0" repository = "https://github.com/wasmx/fizzy" @@ -12,4 +12,4 @@ edition = "2018" publish = false [dependencies] -fizzy = { path = "../", version = "0.6.0-dev" } +fizzy = { path = "../", version = "0.6.0" }