rimless 3.5.0 → 3.6.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: b411634701bb1272091076f6fa9bdea4065f4cc4b9af31f3466e748014637b74
4
- data.tar.gz: e6941968ab01ae0f4c4e6a37b2c4bfd8171b915c73715193f3ee40c8c2f1c88f
3
+ metadata.gz: 71f5ebd483609c1cc3bc766c6ef360e8588f5fb64f0ca7ba9502393a7b5095b8
4
+ data.tar.gz: d522aad9d6dcb01407851a8cab027406e0a4b7a62a0ae873570f252975123a15
5
5
  SHA512:
6
- metadata.gz: da4f6bfc4cc93476984d8e1443f3ef93c6430d697a4dd6078a9631811d955c7a69e8787386502f1c7a7c67f97279c9ef92eb1ad7ac5cc808a6cb20704eac464a
7
- data.tar.gz: b75fbf23d4b408752109ea072844ec7bb0592fae1e0b28d7caa4319d9b4288e721d019bccdc252d691897c57b34abd285d32a5eb77185d8636be81d06de5f545
6
+ metadata.gz: 8c46b4b6550367c47a5c2707a01314161b36695f15ea78ed2798464efe1e57ee054aff99d47d35b8fcd01e35d6ce280f964865818b4eed92c040a6e14fe72740
7
+ data.tar.gz: d4997f5acef39b0a77e0b2293e79cd45dfde2cd382eecb500c4de30639ac12eeb9b8fc2d4c33c651344241ebb35473ce19519caabfdd990bb585dc0307cc4085
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.6.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#79](https://github.com/hausgold/rimless/pull/79))
8
+
5
9
  ### 3.5.0 (15 May 2026)
6
10
 
7
11
  * Updated the kafka-playground ([#78](https://github.com/hausgold/rimless/pull/78))
data/Makefile CHANGED
@@ -138,9 +138,11 @@ endif
138
138
  clean-images:
139
139
  # Clean build images
140
140
  ifeq ($(MAKE_ENV),docker)
141
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
142
- | $(AWK) '{ print $$3 }' \
143
- | $(XARGS) -rn1 $(DOCKER) rmi -f
141
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
142
+ | $(GREP) $(shell basename "`pwd`") \
143
+ | $(AWK) '{ print $$0 }' \
144
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
145
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
144
146
  endif
145
147
 
146
148
  distclean: clean clean-containers clean-images
@@ -4,8 +4,8 @@
4
4
  module Rimless
5
5
  # The version of the +rimless+ gem
6
6
  # TODO: Change back before release.
7
- # VERSION = '3.5.0'
8
- VERSION = '3.5.0'
7
+ # VERSION = '3.6.0'
8
+ VERSION = '3.6.0'
9
9
 
10
10
  class << self
11
11
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer