From ace77938da3a90f20db165dbaf9ea5a7ed25e62f Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 1 Mar 2021 10:52:28 +0000 Subject: [PATCH] Fizzy 0.7.0 Bump version: 0.7.0-dev -> 0.7.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- Doxyfile | 2 +- bindings/rust/Cargo.toml | 2 +- bindings/rust/integration-test/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d542360af..84f048a8d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0-dev +current_version = 0.7.0 tag = True sign_tags = True tag_message = Fizzy {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index ec8fdb12c..8d6aa0664 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.7.0] — unreleased +## [0.7.0] — 2021-03-01 With this release we aim to provide a much improved C and Rust API, including a clear separation of i32 and i64 types. @@ -716,7 +716,7 @@ First release! [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/releases/tag/v0.6.0 -[0.7.0]: https://github.com/wasmx/fizzy/compare/v0.6.0...master +[0.7.0]: https://github.com/wasmx/fizzy/releases/tag/v0.7.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 4c4794d33..ca7d7ef20 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.7.0-dev) +set(PROJECT_VERSION 0.7.0) set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets. include(TestBigEndian) diff --git a/Doxyfile b/Doxyfile index c79bb49a7..55b8a14f0 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Fizzy # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.7.0-dev +PROJECT_NUMBER = 0.7.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index d64980a4a..356f8cbcb 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fizzy" -version = "0.7.0-dev" +version = "0.7.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 f3b173103..01b57cb62 100644 --- a/bindings/rust/integration-test/Cargo.toml +++ b/bindings/rust/integration-test/Cargo.toml @@ -12,4 +12,4 @@ edition = "2018" publish = false [dependencies] -fizzy = { path = "../", version = "0.7.0-dev" } +fizzy = { path = "../", version = "0.7.0" }