Skip to content

Commit

Permalink
Bump version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leoisl committed May 11, 2021
1 parent 9735340 commit 078d65b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:
Expand Down
4 changes: 2 additions & 2 deletions example/run_pandora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions scripts/portable_binary_builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

```
cd <pandora_folder>/scripts/portable_binary_builder
sudo ./build_portable_binary.sh
./build_portable_binary.sh
```

The portable binary will be in `<pandora_folder>/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`.

0 comments on commit 078d65b

Please sign in to comment.