Skip to content

Commit

Permalink
Fizzy 0.8.0
Browse files Browse the repository at this point in the history
Bump version: 0.8.0-dev -> 0.8.0
  • Loading branch information
axic committed Jun 28, 2022
1 parent 60169b7 commit e039f02
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.0-dev
current_version = 0.8.0
tag = True
sign_tags = True
tag_message = Fizzy {new_version}
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0] - unreleased
## [0.8.0] - 2022-06-28

With this release we are introducing support for runtime metering (i.e. deterministic execution). This is only available via the C API.

Expand Down Expand Up @@ -897,7 +897,7 @@ First release!
[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/releases/tag/v0.7.0
[0.8.0]: https://github.com/wasmx/fizzy/compare/v0.7.0...master
[0.8.0]: https://github.com/wasmx/fizzy/releases/tag/v0.8.0

[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ endif()
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug;Release;Coverage)

project(fizzy LANGUAGES CXX C)
set(PROJECT_VERSION 0.8.0-dev)
set(PROJECT_VERSION 0.8.0)
set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets.

include(TestBigEndian)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0-dev
PROJECT_NUMBER = 0.8.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
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "fizzy"
version = "0.8.0-dev"
version = "0.8.0"
authors = ["The Fizzy Authors"]
license = "Apache-2.0"
repository = "https://github.com/wasmx/fizzy"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/integration-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

[package]
name = "fizzy-integration-test"
version = "0.8.0-dev"
version = "0.8.0"
authors = ["The Fizzy Authors"]
license = "Apache-2.0"
repository = "https://github.com/wasmx/fizzy"
edition = "2018"
publish = false

[dependencies]
fizzy = { path = "../", version = "0.8.0-dev" }
fizzy = { path = "../", version = "0.8.0" }

0 comments on commit e039f02

Please sign in to comment.