Skip to content

Commit

Permalink
Set version to 2.0.0.beta1 and change gemspec dependencies to '>= 2.0…
Browse files Browse the repository at this point in the history
….0.beta', '< 3' until 2.0.0 is released.

@dwbutler, if you have some time to spend on this, there are numerous failures.
  • Loading branch information
gkellogg committed Feb 3, 2016
1 parent b7691bb commit 9f37df9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Gem::Specification.new do |gem|
gem.test_files = %w()
gem.has_rdoc = false

gem.required_ruby_version = '>= 1.9.3'
gem.required_ruby_version = '>= 2.0'
gem.requirements = ['libraptor2 (>= 2.0)']
gem.add_runtime_dependency 'ffi', '~> 1.9.10'
gem.add_runtime_dependency 'rdf', '~> 1.99'
gem.add_runtime_dependency 'rdf', '>= 2.0.0.beta', '< 3'
gem.add_development_dependency 'yard' , '~> 0.8'
gem.add_development_dependency 'rspec', '~> 3.2'
gem.add_development_dependency 'rspec-its','~> 1.2'
gem.add_development_dependency 'rdf-spec', '~> 1.99'
gem.add_development_dependency 'rdf-spec', '>= 2.0.0.beta', '< 3'
gem.add_development_dependency 'rake', '~> 10.0'

gem.post_install_message = <<-MESSAGE
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-19mode
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
- rbx-2
matrix:
allow_failures:
Expand Down
8 changes: 5 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@ source "http://rubygems.org"

gemspec name: ""

gem 'rdf', github: 'ruby-rdf/rdf', branch: "develop"
gem 'rdf-spec', github: 'ruby-rdf/rdf-spec', branch: "develop"
gem 'rdf', github: 'ruby-rdf/rdf', branch: "develop"
gem 'rdf-spec', github: 'ruby-rdf/rdf-spec', branch: "develop"
gem "rdf-isomorphic", github: "ruby-rdf/rdf-isomorphic", branch: "develop"

group :development do
gem 'simplecov', platforms: [:mri_19, :jruby]
gem 'simplecov', platforms: [:mri, :jruby]
end

group :debug do
gem 'pry'
gem 'byebug', platforms: :mri
end

platforms :rbx do
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Features
* Serializes RDF statements into Graphviz format.
* Provides serialization format autodetection for RDF/XML, Turtle and RDFa.
* Compatible with any operating system supported by Raptor and Ruby.
* Compatible with MRI 1.8.x, 1.9.x, 2.x, REE, JRuby and Rubinius (1.8 and 1.9 mode).
* Compatible with MRI 2.x, REE, JRuby and Rubinius.

Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.99.0
2.0.0.beta1
2 changes: 1 addition & 1 deletion lib/rdf/raptor/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ def self.to_str() STRING end

##
# @return [Array(Integer, Integer, Integer)]
def self.to_a() [MAJOR, MINOR, TINY] end
def self.to_a() STRING.split(".") end
end
end; end

1 comment on commit 9f37df9

@dwbutler
Copy link
Member

Choose a reason for hiding this comment

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

@gkellogg I'll take a look.

Please sign in to comment.