extlz4 0.2.4.2 → 0.2.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 79289896ae954100abb7a0a20312abefc1206134
4
- data.tar.gz: 2328b0e92f682b0ec3b006eb88e70cd221eda360
2
+ SHA256:
3
+ metadata.gz: 9b6fe3483483101e9c211a0f3f11d93531da246ea3cc76122dc68e5de055d869
4
+ data.tar.gz: 1b707db6ec7779f516ce3c9b60ad95165d8127bbd07a651d4da5717e7716bdea
5
5
  SHA512:
6
- metadata.gz: 4cede1dccaf6955f460f8e458dadf0dc8f27ad11a76dcb5438086320d79bc5f159ea2f9b183224110a89c93061e364feb35053bc938e60881ced44e44d5d4b95
7
- data.tar.gz: 2e867e0857b9c253c3e4260e31913685429eadbe9785db89576dc556fcb184507ffd5f8b095e5fecc754ae57f1d40f28fbb2a401d459be09b1e93e1dd24ba614
6
+ metadata.gz: 26e050bdd6430587345be66cfd75b501cb9b39bf11f586288773d8c429ff2698d242d270aacad051455c356e6078c6720d9c4f7582f2d4e8a28d5ea58d3456cd
7
+ data.tar.gz: f43f49a90cd5d144155fd0b46b70fa066eba298a923f4fc2e1317be85be4c50463cbee7d5683d3c6b6738fd317fcd60f18348effebd700b85e70e518d02dc652
data/HISTORY.ja.md CHANGED
@@ -1,3 +1,8 @@
1
+ # extlz4-0.2.4.3 (平成30年1月13日 土曜日)
2
+
3
+ * LZ4::Decoder.read でバッファ領域が確保されていなかった問題を修正
4
+
5
+
1
6
  # extlz4-0.2.4.2 (平成30年1月7日 日曜日)
2
7
 
3
8
  * バージョン番号の改定のみ
data/README.md CHANGED
@@ -18,7 +18,7 @@ $ dmesg | ruby -r extlz4 -e 'LZ4.encode_file($stdin.binmode, $stdout.binmode)' |
18
18
  * author: dearblue (mailto:dearblue@users.noreply.github.com)
19
19
  * report issue to: <https://github.com/dearblue/ruby-extlz4/issues>
20
20
  * how to install: `gem install extlz4`
21
- * version: 0.2.4.2
21
+ * version: 0.2.4.3
22
22
  * product quality: technical preview
23
23
  * licensing: BSD-2-Clause License
24
24
  * dependency gems: none
data/ext/frameapi.c CHANGED
@@ -503,7 +503,7 @@ fdec_read_args(int argc, VALUE argv[], size_t *size, VALUE *buf)
503
503
  *size = NUM2SIZET(argv[0]);
504
504
  *buf = argv[1];
505
505
  rb_check_type(*buf, RUBY_T_STRING);
506
- rb_str_modify(*buf);
506
+ aux_str_reserve(*buf, *size);
507
507
  rb_str_set_len(*buf, 0);
508
508
  break;
509
509
  default:
@@ -1,3 +1,3 @@
1
1
  module LZ4
2
- VERSION = "0.2.4.2"
2
+ VERSION = "0.2.4.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extlz4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4.2
4
+ version: 0.2.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - dearblue
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-07 00:00:00.000000000 Z
11
+ date: 2018-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  version: '0'
120
120
  requirements: []
121
121
  rubyforge_project:
122
- rubygems_version: 2.6.14
122
+ rubygems_version: 2.7.4
123
123
  signing_key:
124
124
  specification_version: 4
125
125
  summary: ruby bindings for LZ4