From 57b3384a98660d39d99d1f98b887a03413319dee Mon Sep 17 00:00:00 2001 From: Keang Date: Tue, 8 Jan 2019 13:35:58 +1100 Subject: [PATCH 1/2] Fix newer GCC compilation error --- ext/cld/extconf.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ext/cld/extconf.rb b/ext/cld/extconf.rb index 8f638e6..e79dee8 100644 --- a/ext/cld/extconf.rb +++ b/ext/cld/extconf.rb @@ -27,6 +27,9 @@ "internal/cld_generated_score_quad_octa_0122_2.o", "thunk.o"] +# Prevents issues compiling with newer GCC versions +$defs.push("-std=c++98") + if have_library('stdc++') create_makefile('libcld2') end @@ -37,4 +40,4 @@ CLEANOBJS := $(CLEANOBJS) internal/*.#{CONFIG["OBJEXT"]} EOS -end \ No newline at end of file +end From dcdb38da242505908d8438a6b850186f803a1e2d Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Thu, 16 Jan 2020 15:18:20 +1100 Subject: [PATCH 2/2] Bump version to 1.1.0.jora --- .gitignore | 1 + cld2.gemspec | 1 + lib/cld/version.rb | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 50563bb..f79fd41 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ install_manifest.txt *.bundle *.so *.dll +*.gem diff --git a/cld2.gemspec b/cld2.gemspec index 38e6480..4db5e77 100644 --- a/cld2.gemspec +++ b/cld2.gemspec @@ -19,4 +19,5 @@ Gem::Specification.new do |gem| gem.add_dependency "ffi", "~> 1.9.3" gem.add_development_dependency "rspec", "~> 2.14.1" + gem.license = 'Nonstandard' end diff --git a/lib/cld/version.rb b/lib/cld/version.rb index e240a02..0181c71 100644 --- a/lib/cld/version.rb +++ b/lib/cld/version.rb @@ -1,3 +1,3 @@ module CLD - VERSION = "1.0.3" + VERSION = "1.1.0.jora".freeze end