Skip to content

Commit

Permalink
Merge pull request #100 from tilfin/feature/1-8-2
Browse files Browse the repository at this point in the history
Release v1.8.2
  • Loading branch information
tilfin authored Mar 8, 2020
2 parents b86cd52 + bd604cd commit 43aea11
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ rvm:
- 2.6.5
- 2.7.0
- jruby
before_install: gem install bundler -v 1.11.2
before_install: gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
script:
- bundle exec rspec
- if [ "$TRAVIS_RUBY_VERSION" == "2.5.6" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
- if [ "$TRAVIS_RUBY_VERSION" == "2.6.5" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
# In the case where travis is setup to build PR updates only,
# uncomment the line below
# - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ gemspec

group :test do
gem 'awesome_print'
gem 'simplecov', require: false
gem 'simplecov', '< 0.18', require: false
gem 'timecop'
gem 'yard'
end
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2019 Toshimitsu Takahashi
Copyright (c) 2016-2020 Toshimitsu Takahashi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion lib/ougai/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Ougai
VERSION = '1.8.1'
VERSION = '1.8.2'
end
10 changes: 5 additions & 5 deletions ougai.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ Gem::Specification.new do |spec|
spec.test_files = Dir['spec/**/*']
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.3.0'
spec.required_ruby_version = '>= 2.4.0'

if RUBY_PLATFORM =~ /java/
spec.platform = 'java'
spec.add_dependency 'jrjackson', '~> 0.4'
else
spec.add_dependency "oj", "~> 3.4"
spec.add_dependency "oj", "~> 3.10"
end

spec.add_development_dependency "bundler", ">= 1.11.0"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "bundler", ">= 2.1.4"
spec.add_development_dependency "rake", ">= 13.0.1"
spec.add_development_dependency "rspec", ">= 3.9.0"
end

0 comments on commit 43aea11

Please sign in to comment.