Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Sep 27, 2021
1 parent a089117 commit 4139028
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,12 @@ function _c4_validate_ver()
ver=$(echo $ver | sed "s:v\(.*\):\1:")
#sver=$(echo $ver | sed "s:\([0-9]*\.[0-9]*\..[0-9]*\).*:\1:")
if [ ! -f changelog/$ver.md ] ; then \
echo "ERROR: could not find changelog/$ver.md"
exit 1
if [ -f changelog/current.md ] ; then
git mv changelog/current.md changelog/$ver.md
else
echo "ERROR: could not find changelog/$ver.md"
exit 1
fi
fi
echo $ver
}
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(c4core
DESCRIPTION "Multiplatform low-level C++ utilities"
HOMEPAGE_URL "https://github.com/biojppm/c4core"
LANGUAGES CXX)
c4_project(VERSION 0.1.4
c4_project(VERSION 0.1.6
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")

c4_add_library(c4core
Expand Down
2 changes: 2 additions & 0 deletions changelog/0.1.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fix wrong version names in version 0.1.5 (was saying 0.1.4, should be 0.1.5)

2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# github_url = "https://github.com/<user or organization>/<project>/"

[version]
current = "0.1.4"
current = "0.1.6"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit 4139028

Please sign in to comment.