billomat 2.8.0 → 2.9.1

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: 7ef108b925877153a3afc606896724890d22ec0f4e2ec888faf41d0e2b11f028
4
+ data.tar.gz: 7325de6dc9bfbdce8a2cee5a137bd7165d0fd6becd9c6f3d48949038b29314c4
5
5
  SHA512:
6
- metadata.gz: 573d853037e1b700e67343756dc301c764c32c020f5f346f6d2da17b259945bb8b4e6434767b65cb1eb05a7413e97e3f343645eec7fc2d60c54489e056af40e7
7
- data.tar.gz: 1eaa6e022e87e05722e07b9e43995fbf185b706c952f2afe7047bb9448c78d54a793627a54e1d066cf7f0696ba7eba434e98ce427bba7a5186ac9a2afbb345ad
6
+ metadata.gz: 6b46e493b550a86ae8907785fab75b87b927f98eecc93449984e24f80c7e07066a18f0c529093a7dfa85bae19496e88bd7c7c1c14f4e35011aeb04fb5e6eb394
7
+ data.tar.gz: 66146e13d9318f280ee183842e1b303cf1b745c95f567c18dd7a9cc62f553c3d9b8699f3accbf586856233509f88a38f760dd3da73e40511c352694a00437bab
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
+ ### 2.9.1 (14 July 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#48](https://github.com/hausgold/billomat/pull/48))
8
+
9
+ ### 2.9.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#47](https://github.com/hausgold/billomat/pull/47))
12
+
5
13
  ### 2.8.0 (4 May 2026)
6
14
 
7
15
  * 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.1'
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  - !ruby/object:Gem::Version
160
160
  version: '0'
161
161
  requirements: []
162
- rubygems_version: 4.0.11
162
+ rubygems_version: 4.0.16
163
163
  specification_version: 4
164
164
  summary: Wrapper for the Billomat API
165
165
  test_files: []