Skip to content

Commit

Permalink
Bump version to 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnr committed Jan 21, 2020
1 parent 9576380 commit 0740c51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gosu/Version.hpp
Expand Up @@ -4,7 +4,7 @@

#define GOSU_MAJOR_VERSION 0
#define GOSU_MINOR_VERSION 15
#define GOSU_POINT_VERSION 0
#define GOSU_POINT_VERSION 1

namespace Gosu
{
Expand Down
2 changes: 1 addition & 1 deletion cmake/CMakeLists.txt
Expand Up @@ -4,7 +4,7 @@ project(Gosu)

set(GOSU_VERSION_MAJOR "0")
set(GOSU_VERSION_MINOR "15")
set(GOSU_VERSION_PATCH "0")
set(GOSU_VERSION_PATCH "1")
set(GOSU_VERSION "${GOSU_VERSION_MAJOR}.${GOSU_VERSION_MINOR}.${GOSU_VERSION_PATCH}")

option(CMAKE_VERBOSE_MAKEFILE "Display every compilation command" OFF)
Expand Down
2 changes: 1 addition & 1 deletion src/RubyGosu.cxx
Expand Up @@ -11763,7 +11763,7 @@ SWIGEXPORT void Init_gosu(void) {
rb_define_const(mGosu, "LICENSES", SWIG_From_std_string(static_cast< std::string >(Gosu::LICENSES)));
rb_define_const(mGosu, "MAJOR_VERSION", SWIG_From_int(static_cast< int >(0)));
rb_define_const(mGosu, "MINOR_VERSION", SWIG_From_int(static_cast< int >(15)));
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(0)));
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(1)));
rb_define_module_function(mGosu, "milliseconds", VALUEFUNC(_wrap_milliseconds), -1);
rb_define_module_function(mGosu, "random", VALUEFUNC(_wrap_random), -1);
rb_define_module_function(mGosu, "degrees_to_radians", VALUEFUNC(_wrap_degrees_to_radians), -1);
Expand Down

1 comment on commit 0740c51

@namelivia
Copy link

Choose a reason for hiding this comment

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

🎉

Please sign in to comment.