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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 27323650d98dc26e67446da0a9216044ed6f88dd8d560e0d3a20794a78e7acfa
4
- data.tar.gz: 5176ec67c0f0da59b2c12c2e710510967494dfe4e6762fc4ee159bab96f110c6
3
+ metadata.gz: 34e337111f4219ac8df3b9f2944ce5a3f3e7ad3b49b56f1638e63a6384f9c0e4
4
+ data.tar.gz: ba3bc2fdfe4f8175e43a5738b5c905d229e0f9f80cd0c9f8b6f5b1d8eb5ffb47
5
5
  SHA512:
6
- metadata.gz: dfbae47fe2e6fab902527722e4d9d8b72bd0f47564aa9cc78c0f11488def62353e6963651923e841c567b699de395106436b31d361f9aa45ffb9b660512a0119
7
- data.tar.gz: 547c285adc791037f792187c083e144de74605e5ffda8d2c78397a51f734c0b9e3306c7b87b0115d7c466ec1f1ebbc07e7c65cb7a1c152ee6f5057ff30539fe3
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
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
142
- | $(AWK) '{ print $$3 }' \
143
- | $(XARGS) -rn1 $(DOCKER) rmi -f
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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Immoscout
5
5
  # The version of the +immoscout+ gem
6
- VERSION = '2.9.0'
6
+ VERSION = '2.10.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: immoscout
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Geissler