Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade jackson to 2.16.2 and JRuby to 9.4.8.0 #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ group :development do
gem 'json', '~> 2'
gem 'benchmark-ips'
gem 'rake'
gem 'ruby-maven'
gem 'ruby-maven', '3.3.13'
gem 'test-unit'
end

Expand Down
2 changes: 1 addition & 1 deletion Mavenfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ properties 'project.build.sourceEncoding' => 'UTF-8',

jar 'junit:junit', '4.13.2', :scope => :test

jar 'org.jruby:jruby', '9.3.14.0', :scope => :provided
jar 'org.jruby:jruby', '9.4.8.0', :scope => :provided

plugin :compiler, '3.1', :source => '1.8', :target => '1.8',
:showDeprecation => false,
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.4.21
Upgrade jackson and jackson-databind to v2.16.2
Upgrade JRuby to 9.4.8.0

v0.4.20
fix: don't assume ruby strings are valid utf-8

Expand Down
8 changes: 4 additions & 4 deletions lib/jrjackson/build_info.rb
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
module JrJackson
module BuildInfo
def self.version
'0.4.20'
'0.4.21'
end

def self.release_date
'2024-05-09'
'2025-01-03'
end

def self.files
repo_files.concat(generated_jar_files).concat(generated_files)
end

def self.jackson_version
'2.15.4'
'2.16.2'
end

def self.jackson_databind_version
'2.15.4'
'2.16.2'
end

def self.jar_version
Expand Down