kettle-family 1.2.33 → 1.2.34

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: 7bc62f30841deba8052e11b124ade3ea3cb3e2ab8dd79f7767cd9f07b373b823
4
- data.tar.gz: e24a1978e08a4ffa80a927787e3fd054402526fd858edffcfcdf4cd5ba20f875
3
+ metadata.gz: 7e7f131aada899127810d892e16b19276889e5f09f1ee8664f015a7bfeb32670
4
+ data.tar.gz: 9801ee273c9e303387acf6e2b5d039443c3f38730564cd7a79843542a5975e91
5
5
  SHA512:
6
- metadata.gz: a4a84d0a66b107aa69bb2c675ad2cd4e77ccddc84a5d1f8285a14699031d1b31235e79808f4944d8dc48f6bc4a4417bc1777a2aa484fd5d9c4060eb582d7d5bc
7
- data.tar.gz: 00d5aa3f4ab242c133b114a4e2b0b9fe998f85d60ec187a15b80c09cd9dfb02ae036eddef03f20373a52d9b5e281323d6a6c960e18bf8080cd70cd26739020ed
6
+ metadata.gz: fa42cf0c4a60d095bf88f25618433a9f715124fe3db8c030a5df29d9dc35f8c52a1813622086b35906065a88bbe307ebdb456ba4ed75c4464d3a5648c2c01d67
7
+ data.tar.gz: a86052db980ec5261000422f2502886304d9076dfde5980e7a9bd972abf0d8a246b77a27eb698ec20996347adb5702f36e242668d677720cf3b262dae4a32460
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.2.34] - 2026-08-05
34
+
35
+ - TAG: [v1.2.34][1.2.34t]
36
+ - COVERAGE: 93.70% -- 4999/5335 lines in 32 files
37
+ - BRANCH COVERAGE: 76.06% -- 1992/2619 branches in 32 files
38
+ - 29.61% documented
39
+
40
+ ### Fixed
41
+
42
+ - Show completed member counters at 1/1 when GitHub Actions pinning finishes.
43
+
33
44
  ## [1.2.33] - 2026-08-05
34
45
 
35
46
  - TAG: [v1.2.33][1.2.33t]
@@ -1822,7 +1833,9 @@ Please file a bug if you notice a violation of semantic versioning.
1822
1833
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
1823
1834
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
1824
1835
 
1825
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.33...HEAD
1836
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.34...HEAD
1837
+ [1.2.34]: https://github.com/kettle-dev/kettle-family/compare/v1.2.33...v1.2.34
1838
+ [1.2.34t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.34
1826
1839
  [1.2.33]: https://github.com/kettle-dev/kettle-family/compare/v1.2.32...v1.2.33
1827
1840
  [1.2.33t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.33
1828
1841
  [1.2.32]: https://github.com/kettle-dev/kettle-family/compare/v1.2.31...v1.2.32
data/README.md CHANGED
@@ -837,7 +837,7 @@ Thanks for RTFM. ☺️
837
837
  [📌gitmoji]: https://gitmoji.dev
838
838
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
839
839
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
840
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.333-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
840
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.335-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
841
841
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
842
842
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
843
843
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "1.2.33"
8
+ VERSION = "1.2.34"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -104,6 +104,8 @@ module Kettle
104
104
  return unless @enabled
105
105
 
106
106
  synchronize do
107
+ total = @member_totals[member.name].to_i
108
+ @member_counts[member.name] = total if total.positive?
107
109
  @member_finished_elapsed[member.name] = elapsed_seconds(member)
108
110
  if @tty
109
111
  render(member, status: status)
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-family
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.33
4
+ version: 1.2.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -360,10 +360,10 @@ licenses:
360
360
  - AGPL-3.0-only
361
361
  metadata:
362
362
  homepage_uri: https://kettle-family.galtzo.com
363
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.33
364
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.33/CHANGELOG.md
363
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.34
364
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.34/CHANGELOG.md
365
365
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
366
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.33
366
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.34
367
367
  funding_uri: https://github.com/sponsors/pboling
368
368
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
369
369
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file