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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Makefile +5 -3
- data/lib/billomat/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2b8a335508c17ef40d085d2e469cc45621cd545873f65e13c4f41fd61114ac2
|
|
4
|
+
data.tar.gz: 07d61341b1a1c96e69f67a58b632251f81260ecaf86d4e2e9e332b200d5837bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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