From 078d65b2910d2fcdcf3981ef01cc840af11782f9 Mon Sep 17 00:00:00 2001 From: Leandro Ishi Date: Tue, 11 May 2021 14:29:49 +0100 Subject: [PATCH] Bump version 0.9.0 --- CHANGELOG.md | 8 +++++++- CMakeLists.txt | 2 +- README.md | 6 +++--- example/run_pandora.sh | 4 ++-- scripts/portable_binary_builder/README.md | 4 ++-- 5 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b943850..977dba72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ project adheres to ## [Unreleased] +## [0.9.0] + +### Changed +- Version bump from `0.9.0-rc2` to `0.9.0`. + ## [0.9.0-rc2] ### Changed @@ -92,7 +97,8 @@ from this point will have their changes meticulously documented here. - k-mer coverage underflow bug in `LocalPRG` [[#183][183]] -[Unreleased]: https://github.com/rmcolq/pandora/compare/0.9.0-rc2...HEAD +[Unreleased]: https://github.com/rmcolq/pandora/compare/0.9.0...HEAD +[0.9.0]: https://github.com/rmcolq/pandora/releases/tag/0.9.0 [0.9.0-rc2]: https://github.com/rmcolq/pandora/releases/tag/0.9.0-rc2 [0.9.0-rc1]: https://github.com/rmcolq/pandora/releases/tag/0.9.0-rc1 [0.8.0]: https://github.com/rmcolq/pandora/releases/tag/0.8.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index e2922e07..ba25ed1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ HunterGate( # project configuration set(PROJECT_NAME_STR pandora) project(${PROJECT_NAME_STR} VERSION "0.9.0" LANGUAGES C CXX) -set(ADDITIONAL_VERSION_LABELS "-rc2") +set(ADDITIONAL_VERSION_LABELS "") configure_file( include/version.h.in ${CMAKE_BINARY_DIR}/include/version.h ) # add or not feature to print the stack trace diff --git a/README.md b/README.md index f6766be5..cfc06a28 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,13 @@ In this binary, all libraries are linked statically. * **Download**: ``` - wget https://github.com/rmcolq/pandora/releases/download/0.9.0-rc2/pandora-linux-precompiled-v0.9.0-rc2 + wget https://github.com/rmcolq/pandora/releases/download/0.9.0/pandora-linux-precompiled-v0.9.0 ``` * **Running**: ``` -chmod +x pandora-linux-precompiled-v0.9.0-rc2 -./pandora-linux-precompiled-v0.9.0-rc2 -h +chmod +x pandora-linux-precompiled-v0.9.0 +./pandora-linux-precompiled-v0.9.0 -h ``` * **Notes**: diff --git a/example/run_pandora.sh b/example/run_pandora.sh index 17ae6348..cf2858c2 100755 --- a/example/run_pandora.sh +++ b/example/run_pandora.sh @@ -2,8 +2,8 @@ set -eu # configs -pandora_URL="https://github.com/rmcolq/pandora/releases/download/0.9.0-rc2/pandora-linux-precompiled-v0.9.0-rc2" -pandora_executable="./pandora-linux-precompiled-v0.9.0-rc2" +pandora_URL="https://github.com/rmcolq/pandora/releases/download/0.9.0/pandora-linux-precompiled-v0.9.0" +pandora_executable="./pandora-linux-precompiled-v0.9.0" make_prg_URL="https://github.com/leoisl/make_prg/releases/download/v0.2.0_prototype/make_prg_0.2.0_prototype" make_prg_executable="./make_prg_0.2.0_prototype" diff --git a/scripts/portable_binary_builder/README.md b/scripts/portable_binary_builder/README.md index cc0d2b05..22a7b867 100644 --- a/scripts/portable_binary_builder/README.md +++ b/scripts/portable_binary_builder/README.md @@ -2,9 +2,9 @@ ``` cd /scripts/portable_binary_builder -sudo ./build_portable_binary.sh +./build_portable_binary.sh ``` The portable binary will be in `/pandora-linux-precompiled` -You can remove `sudo` if it is not needed to run `docker`. +You can add `sudo` if it is needed to run `docker`.