Skip to content

Commit 0606767

Browse files
committed
Fizzy 0.6.0
Bump version: 0.6.0-dev -> 0.6.0
1 parent 7be473c commit 0606767

File tree

5 files changed

+7
-7
lines changed

5 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.6.0-dev
2+
current_version = 0.6.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.6.0]Unreleased
8+
## [0.6.0]2020-12-24
99

1010
With this release we focus on introducing three major features:
1111
- a public C API,
@@ -638,7 +638,7 @@ First release!
638638
[0.3.0]: https://github.com/wasmx/fizzy/releases/tag/v0.3.0
639639
[0.4.0]: https://github.com/wasmx/fizzy/releases/tag/v0.4.0
640640
[0.5.0]: https://github.com/wasmx/fizzy/releases/tag/v0.5.0
641-
[0.6.0]: https://github.com/wasmx/fizzy/compare/v0.5.0...master
641+
[0.6.0]: https://github.com/wasmx/fizzy/releases/tag/v0.6.0
642642

643643
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
644644
[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.6.0-dev)
30+
set(PROJECT_VERSION 0.6.0)
3131
set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets.
3232

3333
include(TestBigEndian)

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.6.0-dev"
7+
version = "0.6.0"
88
authors = ["The Fizzy Authors"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/wasmx/fizzy"

bindings/rust/integration-test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
[package]
66
name = "fizzy-integration-test"
7-
version = "0.6.0-dev"
7+
version = "0.6.0"
88
authors = ["The Fizzy Authors"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/wasmx/fizzy"
1111
edition = "2018"
1212
publish = false
1313

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

0 commit comments

Comments
 (0)