ruby-xz 1.0.1 → 1.0.2

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/HISTORY.rdoc +3 -0
  3. data/README.md +17 -0
  4. data/lib/xz/version.rb +2 -3
  5. metadata +15 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9826b10c06d748022a2246bf9888c7b033f0d7fca2383303d8e75b7f871dac21
4
- data.tar.gz: f8b6047714b8390890f8a097b98caf78b92f3d902f8c48898c0bbdc5353c4b96
3
+ metadata.gz: c92bf36556e0297676ad48820dc2ba25243e897ac3d4401d4a8ec89d695e77e4
4
+ data.tar.gz: 77a1b46d9158f80b6ad28c68483a02835fcecb9ae5fa85f9dcda296630238ea2
5
5
  SHA512:
6
- metadata.gz: b59d8b288be8180a15d1718bce8836138b7efb3d26c6e0e41b24f493561bbb10c8821932d6dc10dbba05774948c2e2990c14af7bf7acb24afce78cb980481b90
7
- data.tar.gz: 0a1f54092cfe6122ff1857e7917c232d7333c87f16a3e82dc5bec90d098c2e431ef15ffa6a3d23fa8a67595717e28bfce174a83f3b9d9663b01799d3adbd6087
6
+ metadata.gz: 7830929d9fea616430f554cb2a2ae2ef95095b8cf5d90c19e70e5bba697f301a059071c9da83a926ed7654506ccbe317009147c11d444822a47f78f3592dbfbc
7
+ data.tar.gz: fea094736b25633859b303a17402a59cd673c3fafa80614dd096f5053c92d09604a2e06fbf3a1d75e11e04a34b336a54ffe4bb8ae4231f4766417a49d4cec5c7
data/HISTORY.rdoc CHANGED
@@ -1,5 +1,8 @@
1
1
  = Version history
2
2
 
3
+ == 1.0.2 (2021-11-28)
4
+ * Fix a deprecation warning and some other gemspec concerns (PR win93#6 by Alex Gittemeier)
5
+
3
6
  == 1.0.1 (2021-11-13)
4
7
  * Fix a buffer overflow error in XZ::Stream (PR Quintus#17 by genail)
5
8
  * Fix an issue with transcode_options that was introduced by Ruby 3 (PR win93#1 by Alex Gittemeier)
data/README.md CHANGED
@@ -99,6 +99,23 @@ XZ::StreamReader.open("tarball.tar.xz") do |txz|
99
99
  end
100
100
  ```
101
101
 
102
+ ## Development
103
+
104
+ After checking out the repo, run `bundle install` to install dependencies.
105
+
106
+ To install this gem onto your local machine, run `rake install`.
107
+
108
+ To release a new version:
109
+
110
+ - Switch to the `development` branch.
111
+ - Bump `lib/xz/version.rb`, run `bundle install`, then commit the result.
112
+ - Switch to the `stable` branch.
113
+ - Run `git merge --no-ff development`
114
+ - Run `rake release`, which will create/push a git tag and publish the `.gem`
115
+ file to [rubygems.org].
116
+
117
+ [rubygems.org]: https://rubygems.org
118
+
102
119
  ## Links
103
120
 
104
121
  * Online documentation: <https://rubydoc.info/gems/ruby-xz>
data/lib/xz/version.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # -*- coding: utf-8 -*-
2
3
  #--
3
4
  # Basic liblzma-bindings for Ruby.
@@ -26,8 +27,6 @@
26
27
  #++
27
28
 
28
29
  module XZ
29
-
30
30
  # The version of this library.
31
- VERSION = "1.0.1".freeze
32
-
31
+ VERSION = '1.0.2'
33
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-xz
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Gülker
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-11-13 00:00:00.000000000 Z
12
+ date: 2021-11-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitar
@@ -26,33 +26,33 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0.6'
28
28
  - !ruby/object:Gem::Dependency
29
- name: rake
29
+ name: minitest
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: '13.0'
34
+ version: '5.14'
35
35
  type: :development
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: '13.0'
41
+ version: '5.14'
42
42
  - !ruby/object:Gem::Dependency
43
- name: minitest
43
+ name: rake
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: '5.14'
48
+ version: '13.0'
49
49
  type: :development
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: '5.14'
55
+ version: '13.0'
56
56
  description: |
57
57
  These are simple Ruby bindings for the liblzma library
58
58
  (http://tukaani.org/xz/), which is best known for the
@@ -82,7 +82,13 @@ files:
82
82
  homepage: https://github.com/win93/ruby-xz
83
83
  licenses:
84
84
  - MIT
85
- metadata: {}
85
+ metadata:
86
+ homepage_uri: https://github.com/win93/ruby-xz
87
+ source_code_uri: https://github.com/win93/ruby-xz/tree/stable
88
+ documentation_uri: https://www.rubydoc.info/gems/ruby-xz
89
+ bug_tracker_uri: https://github.com/win93/ruby-xz/issues
90
+ changelog_uri: https://github.com/win93/ruby-xz/blob/stable/HISTORY.rdoc
91
+ rubygems_mfa_required: 'true'
86
92
  post_install_message: Version 1.0.0 of ruby-xz breaks the API. Read HISTORY.rdoc and
87
93
  adapt your code to the new API.
88
94
  rdoc_options: