Skip to content

Commit e185c12

Browse files
committed
v1.4.2
1 parent ac80c9f commit e185c12

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2021-02-01 version 1.4.2:
2+
3+
* Add the required Ruby version (>= 2.4) to avoid compilation errors on older Ruby runtimes
4+
* Drop the support of old Ruby versions explicitly (1.8, 1.9, 2.0, 2.1, 2.2, 2.3)
5+
16
2021-01-27 version 1.4.1:
27

38
* Bugfix about the wrong string encoding longer than 256 bytes (#200)

lib/msgpack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module MessagePack
2-
VERSION = "1.4.1"
2+
VERSION = "1.4.2"
33
# Note for maintainers:
44
# Don't miss building/releasing the JRuby version (rake buld:java)
55
# See "How to build -java rubygems" in README for more details.

msgpack.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Gem::Specification.new do |s|
2020
end
2121
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
2222

23+
s.required_ruby_version = ">= 2.4"
24+
2325
s.add_development_dependency 'bundler'
2426
s.add_development_dependency 'rake'
2527
s.add_development_dependency 'rake-compiler'

0 commit comments

Comments
 (0)