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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Makefile +5 -3
- data/lib/billomat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ef108b925877153a3afc606896724890d22ec0f4e2ec888faf41d0e2b11f028
|
|
4
|
+
data.tar.gz: 7325de6dc9bfbdce8a2cee5a137bd7165d0fd6becd9c6f3d48949038b29314c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
152
|
-
| $(
|
|
153
|
-
| $(
|
|
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
|
data/lib/billomat/version.rb
CHANGED
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.
|
|
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.
|
|
162
|
+
rubygems_version: 4.0.16
|
|
163
163
|
specification_version: 4
|
|
164
164
|
summary: Wrapper for the Billomat API
|
|
165
165
|
test_files: []
|