billomat 2.8.0 → 2.9.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: 1b75e8799bb6b17b0bcf8c1f08199ce70dfddd6e235fc41801b5d87d012279f9
4
- data.tar.gz: c241f2d2be9b011fe1af79ef2b30575d10f4b5bf09f3e2e02dea24ca2c20d4d0
3
+ metadata.gz: f2b8a335508c17ef40d085d2e469cc45621cd545873f65e13c4f41fd61114ac2
4
+ data.tar.gz: 07d61341b1a1c96e69f67a58b632251f81260ecaf86d4e2e9e332b200d5837bc
5
5
  SHA512:
6
- metadata.gz: 573d853037e1b700e67343756dc301c764c32c020f5f346f6d2da17b259945bb8b4e6434767b65cb1eb05a7413e97e3f343645eec7fc2d60c54489e056af40e7
7
- data.tar.gz: 1eaa6e022e87e05722e07b9e43995fbf185b706c952f2afe7047bb9448c78d54a793627a54e1d066cf7f0696ba7eba434e98ce427bba7a5186ac9a2afbb345ad
6
+ metadata.gz: 00f75e680c182af9e6b45e6cc88e33f014e4cfdafd61e9de97fda8b1dceb2fe635d44c64106fb79dd5e455a9c0b234211ace799ae6023e9f794c1c1c55271666
7
+ data.tar.gz: eb586f1b73f8d7951845bc0b0fc9f1baa84e9c4130b0a38eaf3179039642152c80ca57cd57c5d48dd60c365c940de5663e3ed08195cdf594fd41bb2fd037ce58
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
+ ### 2.9.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#47](https://github.com/hausgold/billomat/pull/47))
8
+
5
9
  ### 2.8.0 (4 May 2026)
6
10
 
7
11
  * Dropped Ruby 3.x and Rails <8.1 support ([#45](https://github.com/hausgold/billomat/pull/45))
data/Makefile CHANGED
@@ -148,9 +148,11 @@ endif
148
148
  clean-images:
149
149
  # Clean build images
150
150
  ifeq ($(MAKE_ENV),docker)
151
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
152
- | $(AWK) '{ print $$3 }' \
153
- | $(XARGS) -rn1 $(DOCKER) rmi -f
151
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
152
+ | $(GREP) $(shell basename "`pwd`") \
153
+ | $(AWK) '{ print $$0 }' \
154
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
155
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
154
156
  endif
155
157
 
156
158
  distclean: clean clean-containers clean-images
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Billomat
5
5
  # The version of the +billomat+ gem
6
- VERSION = '2.8.0'
6
+ VERSION = '2.9.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: billomat
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer