Skip to content

Commit

Permalink
Bump to v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christophercrouzet committed Jul 22, 2021
1 parent d5daaa9 commit 7bd38a5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog
Version numbers comply with the [Sementic Versioning Specification (SemVer)].


## [Unreleased]
## [v0.2.1] (2021-07-22)

### Added

Expand Down Expand Up @@ -40,5 +40,6 @@ Version numbers comply with the [Sementic Versioning Specification (SemVer)].


[Sementic Versioning Specification (SemVer)]: https://semver.org
[Unreleased]: https://github.com/christophercrouzet/rexo/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/christophercrouzet/rexo/compare/v0.2.1...HEAD
[v0.2.1]: https://github.com/christophercrouzet/rexo/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/christophercrouzet/rexo/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.15)

project(Rexo
VERSION 0.2.0
VERSION 0.2.1
LANGUAGES C CXX)

# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion include/rexo.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#define RX_MAJOR_VERSION 0
#define RX_MINOR_VERSION 2
#define RX_PATCH_VERSION 0
#define RX_PATCH_VERSION 1

#define RX_VERSION \
((RX_MAJOR_VERSION << 20) | (RX_MINOR_VERSION << 10) | (RX_PATCH_VERSION))
Expand Down

0 comments on commit 7bd38a5

Please sign in to comment.