Skip to content

Commit

Permalink
Bump version: 0.3.1 → 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxscheurer committed Oct 4, 2023
1 parent cadacc1 commit d1bc43f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.16...3.20)

# project name
project(cppe LANGUAGES CXX VERSION 0.3.1)
project(cppe LANGUAGES CXX VERSION 0.3.2)

# do not rebuild if rules (compiler flags) change
set(CMAKE_SKIP_RULE_DEPENDENCY TRUE)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.2
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def finalize_options(self):
pass


__version__ = "0.3.1"
__version__ = "0.3.2"


def strip_readme():
Expand Down
2 changes: 1 addition & 1 deletion src/metadata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace libcppe {
namespace {
static const std::string static_version_string = "0.3.1";
static const std::string static_version_string = "0.3.2";

static const std::vector<std::string> version_split = [](const std::string& in) {
std::vector<std::string> parts;
Expand Down

0 comments on commit d1bc43f

Please sign in to comment.