rimless 3.4.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: 5d7d34c4154cca4456eb5e21e165bdcc3206ad9746aba7f6bc2c363e3292a692
4
- data.tar.gz: fad1418db344e29e77e2dc7f20d468f31eb2a34d4fe5260e7b18a0120242cd8e
3
+ metadata.gz: 71f5ebd483609c1cc3bc766c6ef360e8588f5fb64f0ca7ba9502393a7b5095b8
4
+ data.tar.gz: d522aad9d6dcb01407851a8cab027406e0a4b7a62a0ae873570f252975123a15
5
5
  SHA512:
6
- metadata.gz: 3b0619589bb1b8d4c6df09340f6de6956b387858d0d5199f984378ba83cf04520b28d1bc17daa750fe127967c7b40d9ad824a6bbcda15459e0c77d18c7328be9
7
- data.tar.gz: dc90562a7a290f6175fe2adae8b07d01b89978c885355f70ff924b21222c23cd5ab62c5e50a9bd86553c92750b4d046a446c6822651c84f72d4cd1e766b04dc2
6
+ metadata.gz: 8c46b4b6550367c47a5c2707a01314161b36695f15ea78ed2798464efe1e57ee054aff99d47d35b8fcd01e35d6ce280f964865818b4eed92c040a6e14fe72740
7
+ data.tar.gz: d4997f5acef39b0a77e0b2293e79cd45dfde2cd382eecb500c4de30639ac12eeb9b8fc2d4c33c651344241ebb35473ce19519caabfdd990bb585dc0307cc4085
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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
+
9
+ ### 3.5.0 (15 May 2026)
10
+
11
+ * Updated the kafka-playground ([#78](https://github.com/hausgold/rimless/pull/78))
12
+
5
13
  ### 3.4.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x and Rails <8.1 support ([#77](https://github.com/hausgold/rimless/pull/77))
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 @@ LABEL org.opencontainers.image.authors="containers@hausgold.de"
4
4
  # Update system gem
5
5
  RUN gem update --system '4.0.11'
6
6
 
7
- # Install nodejs 25
8
- RUN curl -sL https://deb.nodesource.com/setup_25.x | bash -
7
+ # Install nodejs 26
8
+ RUN curl -sL https://deb.nodesource.com/setup_26.x | bash -
9
9
 
10
10
  # Install system packages and the ruby bundless
11
11
  RUN apt-get update -yqqq && \
@@ -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.4.0'
8
- VERSION = '3.4.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.4.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer