calltally 0.3.3 → 0.4.0

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: 84a5c1d77b1ed304538827750d1663b1c902b5fc65f17f75f0f88fd2263f2d3e
4
- data.tar.gz: 2da6ce855ca8444bc993d84bd6c7e30cdc76c406da58be34de29c3b72e635991
3
+ metadata.gz: 263b484ea483b73786c6a086551e12e40b302897a4aead6efc3ec66b31fcbf46
4
+ data.tar.gz: b4d6bc413a635dd8d8faa64ba83a13bb64df71de29e583daf55e711018bcea07
5
5
  SHA512:
6
- metadata.gz: ded608fb1a759f063a7a223f6c3a494975c7ad02f0fd481f59bd587f4ffa4746c3b574a3e1d54d8463f9a0267c67a39fa7f34ea3f9f3da7eac73a627d765551e
7
- data.tar.gz: c74f85a46d04a3f2db687c3f16f552764e24cb888b378e61f5a59769da6c5b18d248a61759c63946a3d09f7dda93fbf9c49e507fa716db65a32549551282ef53
6
+ metadata.gz: b0a2f7021d81ae18787f432a1d4861168130f1176e97505b8dae4cda8a8efe0fd925ebb62aa08620c74c4ad09040be51892c344151dd08ec1b028a3dd9e8b730
7
+ data.tar.gz: 760ccc75e799b0ed894307345474f8170241c379c6e4adc918c01869b1f3401af52b7e82bc0d482bed219ca11672545a783d789e7070df6e387880515407c6e5
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.0] - 2026-04-24
11
+
12
+ ### Removed
13
+ - **BREAKING:** Ruby 3.2 support (reached end-of-life on 2026-03-31)
14
+
15
+ ### Changed
16
+ - Bumped minimum Ruby version to 3.3.0
17
+ - Updated prism to 1.9.0 for improved visitor performance on large codebases
18
+ - Updated Bundler to 4.0.10
19
+
10
20
  ## [0.3.3] - 2025-12-27
11
21
 
12
22
  ### Added
@@ -75,7 +85,8 @@ Focus for now is on Ruby code in models/controllers/services; view logic can be
75
85
  - Output formats: table, JSON, CSV
76
86
  - Ruby 3.2+ compatibility
77
87
 
78
- [Unreleased]: https://github.com/nsgc/calltally/compare/v0.3.3...HEAD
88
+ [Unreleased]: https://github.com/nsgc/calltally/compare/v0.4.0...HEAD
89
+ [0.4.0]: https://github.com/nsgc/calltally/compare/v0.3.3...v0.4.0
79
90
  [0.3.3]: https://github.com/nsgc/calltally/compare/v0.3.2...v0.3.3
80
91
  [0.3.2]: https://github.com/nsgc/calltally/compare/v0.3.1...v0.3.2
81
92
  [0.3.1]: https://github.com/nsgc/calltally/compare/v0.3.0...v0.3.1
@@ -1,11 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "json"
4
- begin
5
- require "csv"
6
- rescue LoadError
7
- # CSV is optional for Ruby 3.4+
8
- end
4
+ require "csv"
9
5
 
10
6
  module Calltally
11
7
  module Formatter
@@ -1,11 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- begin
4
- require "prism"
5
- rescue LoadError
6
- warn "[calltally] prism not found. Install 'prism' gem or use Ruby 3.3+."
7
- raise
8
- end
3
+ require "prism"
9
4
 
10
5
  module Calltally
11
6
  class PrismVisitor < ::Prism::Visitor
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Calltally
4
- VERSION = "0.3.3"
4
+ VERSION = "0.4.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calltally
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naoki Nishiguchi
@@ -89,14 +89,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
89
  requirements:
90
90
  - - ">="
91
91
  - !ruby/object:Gem::Version
92
- version: 3.2.0
92
+ version: 3.3.0
93
93
  required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 4.0.3
99
+ rubygems_version: 4.0.6
100
100
  specification_version: 4
101
101
  summary: Tally your method calls
102
102
  test_files: []