cbz_tools 0.1.0 → 0.1.1

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
2
  SHA256:
3
- metadata.gz: d89395bfb15781bbfdc8be6598676bba94f34506f1870bc3704177f5a7b97659
4
- data.tar.gz: d0c2bb20ebdafcbcfc7f468502e7669960824ee66648fde194653dd455a9c4b3
3
+ metadata.gz: f7fe3f88fb29727f7962453a2fee499507a67111de66b535e4306dd88a569c19
4
+ data.tar.gz: 5513eadeb2da736150f1423aff4d4b37ae7229946bcee1e1fbe599894c639295
5
5
  SHA512:
6
- metadata.gz: afed755eb2b4d0867c2c2d6ce7910a45951d73f2c575f177f7263ae646ab5b1df2c4a67897f3248c80f7f7e8c0010489d69d74b1c08c7efb55df6b63a8022241
7
- data.tar.gz: 05de04f7c338656391eff82243d9116e1423070d1c60b082a7206bece223c1d442e08d127460e515b3ce8176c1fe44f777279d03f3c50a58f9a5c66c554d4c93
6
+ metadata.gz: c424857bf97688fb045f1e2f26b7740dd85fc6a8cd38e6cce6acad5c9d3f2a9900b510843b03dc292aaa4873dc68f45fb11ada59730c648988a8eb54d0c10841
7
+ data.tar.gz: b486e668e9106525f2053d8ac2e36f9271717ee524b934009f1f8f752eb3be007a1de09c281dc1afc36305382de81917d16e280b5dd94aa0d9644f48656252bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2026-08-03
4
+
5
+ - Exclude development-only files from the packaged gem
6
+
3
7
  ## [0.1.0] - 2026-07-21
4
8
 
5
9
  - Initial release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CbzTools
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cbz_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Figueroa
@@ -18,12 +18,9 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - ".rspec"
22
- - ".standard.yml"
23
21
  - CHANGELOG.md
24
22
  - LICENSE.txt
25
23
  - README.md
26
- - Rakefile
27
24
  - lib/cbz_tools.rb
28
25
  - lib/cbz_tools/version.rb
29
26
  - sig/cbz_tools.rbs
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/.standard.yml DELETED
@@ -1,3 +0,0 @@
1
- # For available configuration options, see:
2
- # https://github.com/standardrb/standard
3
- ruby_version: 3.0
data/Rakefile DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- require "standard/rake"
9
-
10
- task default: %i[spec standard]