From 778bcfd3f6844c82b8bdf2fc7e2a9e4bcb121fb9 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 29 Jul 2020 21:14:39 +0100 Subject: [PATCH] Fizzy 0.3.0 Bump version: 0.3.0-dev -> 0.3.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b216dad23..331a25240 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0-dev +current_version = 0.3.0 tag = True sign_tags = True tag_message = Fizzy {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 654547d8a..b6f640b41 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.3.0] — Unreleased +## [0.3.0] — 2020-07-29 This main focus for this release is to implement every WebAssembly validation rule from the specification. @@ -255,7 +255,7 @@ First release! [0.1.0]: https://github.com/wasmx/fizzy/releases/tag/v0.1.0 [0.2.0]: https://github.com/wasmx/fizzy/releases/tag/v0.2.0 -[0.3.0]: https://github.com/wasmx/fizzy/compare/v0.2.0..master +[0.3.0]: https://github.com/wasmx/fizzy/releases/tag/v0.3.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 e4e8c71c0..115ccbeb3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ endif() cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug;Release;Coverage) project(fizzy LANGUAGES CXX C) -set(PROJECT_VERSION 0.3.0-dev) +set(PROJECT_VERSION 0.3.0) set(CMAKE_CXX_EXTENSIONS OFF) # Disable extensions to C++ standards in Fizzy targets. include(TestBigEndian)