immoscout 2.9.0 → 2.10.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/immoscout/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: 34e337111f4219ac8df3b9f2944ce5a3f3e7ad3b49b56f1638e63a6384f9c0e4
|
|
4
|
+
data.tar.gz: ba3bc2fdfe4f8175e43a5738b5c905d229e0f9f80cd0c9f8b6f5b1d8eb5ffb47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0728a5b5ce34c3e255abd5e850f3efb902d038c69dce910d030feae3dbd783ee93304c685fa5d1efd5c564687c5014c8e12a97bb78ade6af6d7d52189aefbd1d'
|
|
7
|
+
data.tar.gz: 66badd9334e3e281b09002e115156561056ddf0f61546b8e9d88dd4c07b9145b8f647430ad54a01fcd5aaff5099433a267ab05abb84060b4141a1e878cd72547
|
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.10.0 (20 May 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#37](https://github.com/hausgold/immoscout/pull/37))
|
|
8
|
+
|
|
5
9
|
### 2.9.0 (4 May 2026)
|
|
6
10
|
|
|
7
11
|
* Dropped Ruby 3.x and Rails <8.1 support ([#36](https://github.com/hausgold/immoscout/pull/36))
|
data/Makefile
CHANGED
|
@@ -138,9 +138,11 @@ endif
|
|
|
138
138
|
clean-images:
|
|
139
139
|
# Clean build images
|
|
140
140
|
ifeq ($(MAKE_ENV),docker)
|
|
141
|
-
|
|
142
|
-
| $(
|
|
143
|
-
| $(
|
|
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
|
data/lib/immoscout/version.rb
CHANGED