Skip to content

Commit

Permalink
Bump version to 0.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnr committed Oct 8, 2018
1 parent 7885b7d commit eb5418a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gosu.podspec
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "Gosu"
s.version = "0.14.3"
s.version = "0.14.4"
s.summary = "2D game development library."
s.homepage = "https://www.libgosu.org/"
s.documentation_url = "https://www.libgosu.org/cpp/"

s.license = { type: "MIT", file: "COPYING" }
s.author = { "Julian Raschke" => "julian@raschke.de" }

s.source = { git: "https://github.com/gosu/gosu.git", tag: "v0.14.3" }
s.source = { git: "https://github.com/gosu/gosu.git", tag: "v0.14.4" }

# We can't compile utf8proc.c as C++, and we need to silence warnings in stb_vorbis.c.
# => Group all C dependencies into a subspec.
Expand Down
2 changes: 1 addition & 1 deletion Gosu/Version.hpp
Expand Up @@ -4,7 +4,7 @@

#define GOSU_MAJOR_VERSION 0
#define GOSU_MINOR_VERSION 14
#define GOSU_POINT_VERSION 3
#define GOSU_POINT_VERSION 4

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 "14")
set(GOSU_VERSION_PATCH "3")
set(GOSU_VERSION_PATCH "4")
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 @@ -11701,7 +11701,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 >(14)));
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(3)));
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(4)));
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

0 comments on commit eb5418a

Please sign in to comment.