Skip to content

Commit

Permalink
v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Nov 4, 2021
1 parent a6c977b commit 231185e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/reqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ function c4_install_test_requirements_windows()
choco install swig
which swig
fi
# ensure chocolatey does not override cmake's cpack
which cpack
choco_cpack="/c/ProgramData/Chocolatey/bin/cpack.exe"
if [ -f $choco_cpack ] ; then
newname=$(echo $choco_cpack | sed 's:cpack:choco-cpack:')
mv -vf $choco_cpack $newname
fi
which cpack
}

function c4_install_test_requirements_macos()
Expand Down
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.6
c4_project(VERSION 0.1.7
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")

c4_add_library(c4core
Expand Down
5 changes: 5 additions & 0 deletions changelog/0.1.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Fix build with C4CORE_NO_FAST_FLOAT ([#42](https://github.com/biojppm/c4core/pull/42)).
- Fix clang warning in AIX/xlclang ([#44](https://github.com/biojppm/c4core/pull/44)).

### Thanks
--- @mbs-c
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.6"
current = "0.1.7"

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

0 comments on commit 231185e

Please sign in to comment.