Skip to content

Commit ace7793

Browse files
committed
Fizzy 0.7.0
Bump version: 0.7.0-dev -> 0.7.0
1 parent a0c08f8 commit ace7793

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.0-dev
2+
current_version = 0.7.0
33
tag = True
44
sign_tags = True
55
tag_message = Fizzy {new_version}

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation of all notable changes to the **Fizzy** project.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8-
## [0.7.0]unreleased
8+
## [0.7.0]2021-03-01
99

1010
With this release we aim to provide a much improved C and Rust API, including a clear separation of i32 and i64 types.
1111

@@ -716,7 +716,7 @@ First release!
716716
[0.4.0]: https://github.com/wasmx/fizzy/releases/tag/v0.4.0
717717
[0.5.0]: https://github.com/wasmx/fizzy/releases/tag/v0.5.0
718718
[0.6.0]: https://github.com/wasmx/fizzy/releases/tag/v0.6.0
719-
[0.7.0]: https://github.com/wasmx/fizzy/compare/v0.6.0...master
719+
[0.7.0]: https://github.com/wasmx/fizzy/releases/tag/v0.7.0
720720

721721
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
722722
[Semantic Versioning]: https://semver.org

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ endif()
2727
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug;Release;Coverage)
2828

2929
project(fizzy LANGUAGES CXX C)
30-
set(PROJECT_VERSION 0.7.0-dev)
30+
set(PROJECT_VERSION 0.7.0)
3131
set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets.
3232

3333
include(TestBigEndian)

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Fizzy
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.7.0-dev
41+
PROJECT_NUMBER = 0.7.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

bindings/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "fizzy"
7-
version = "0.7.0-dev"
7+
version = "0.7.0"
88
authors = ["The Fizzy Authors"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/wasmx/fizzy"

bindings/rust/integration-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ edition = "2018"
1212
publish = false
1313

1414
[dependencies]
15-
fizzy = { path = "../", version = "0.7.0-dev" }
15+
fizzy = { path = "../", version = "0.7.0" }

0 commit comments

Comments
 (0)