Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Jun 19, 2016
1 parent d617bee commit 8231643
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ enable_testing()

project (RapMap)

set(CPACK_PACKAGE_VERSION "0.2.0")
set(CPACK_PACKAGE_VERSION "0.3.0")
SET(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "2")
set(CPACK_PACKAGE_VERSION_MINOR "3")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_GENERATOR "TGZ")
set(CPACK_SOURCE_GENERATOR "TGZ")
Expand Down
4 changes: 2 additions & 2 deletions include/RapMapConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

namespace rapmap {
constexpr char majorVersion[] = "0";
constexpr char minorVersion[] = "2";
constexpr char minorVersion[] = "3";
constexpr char patchVersion[] = "0";
constexpr char version [] = "0.2.0";
constexpr char version [] = "0.3.0";
constexpr uint32_t indexVersion = 2;
}

Expand Down

5 comments on commit 8231643

@mdshw5
Copy link

@mdshw5 mdshw5 commented on 8231643 Jun 20, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might want to have your release script pull the actual version number from this file since the release page still shows v0.2.3 in the filename.

@rob-p
Copy link
Contributor Author

@rob-p rob-p commented on 8231643 Jun 20, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh --- the release script still requires me to name things manually. I'll re-compile with the new version info. Thanks for catching this (and reminding me that the script should be more thoroughly automated ;P).

@rob-p
Copy link
Contributor Author

@rob-p rob-p commented on 8231643 Jun 20, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok; fixed the releases. I'll think about how to best automate the release script. Thanks again.

@mdshw5
Copy link

@mdshw5 mdshw5 commented on 8231643 Jun 20, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you thought about setting up some basic tests and running on @TravisCI? You can easily do deployment/releases on tagged commits in master branch etc...

@rob-p
Copy link
Contributor Author

@rob-p rob-p commented on 8231643 Jun 20, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, I've used @TravisCI for sailfish / salmon to run automated tests on commits etc. I haven't dug much yet into how to do deployment or releases yet. Specifically, the releases are built under Holy Build Box to ensure maximum compatibility, so I'd need some sort of travisci => docker setup etc.

Please sign in to comment.