bridgetown_sequel 1.1.0 → 1.1.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: 70cd461dfd896b044b8d4da851ec6d46f77c6c2a3281972639c95b66304ce09e
4
- data.tar.gz: a18800f8eb6f969449135505113f333282513ed9671f54a279ee8aa2446cf344
3
+ metadata.gz: 4a51b222272301ffe21bf60c4df11cc34d7b18116290d81fc2cb6e280b541a13
4
+ data.tar.gz: 8cd7b635fe90fafce9f88e55d1d6ea7ecd08d5aae157b2f8a6f75cd25ce486c0
5
5
  SHA512:
6
- metadata.gz: ec0c23201849152224130240238288681aadd94d92253874a2e78b1f0a37de7ac6fed484b11994cc963d1dc8454e7d75af49cd5657dc3a8bbaaa4045d3fe4407
7
- data.tar.gz: 6018c48d4c697c7e54c8b9e7da5eedacde1e16b874e5b8100b4cac87d4c07742077c0eb861ca281dd7a301423f5f38a2f67a44eeb5bbe979a2e125cef151b554
6
+ metadata.gz: 8295e0430b6fde6c4990faa7f70b16420d1a8adc4790ceb8c4b7e1653d7cb9c90c074ca14fc6c0720d59c047b7d531dd8728f4c3913aac893b5d21c190582888
7
+ data.tar.gz: 9a05d4c484a77b44dbd85d7f62bf1f35411948913e2996888d68a8090bcb0dfc90ca57e6647a757b273be70677fdb51aa82ab58715c93a159fec8adf8524b27e
data/CHANGELOG.md CHANGED
@@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- - ...
10
+ ## [1.1.1] - 2024-04-03
11
+
12
+ - Fix lambda error in initializer
11
13
 
12
14
  ## [1.1.0] - 2024-04-03
13
15
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BridgetownSequel
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.1"
5
5
  end
@@ -17,7 +17,7 @@ Bridgetown.initializer :bridgetown_sequel do |
17
17
  config,
18
18
  models_dir: ENV.fetch("BRIDGETOWN_SEQUEL_MODELS_DIR", "models"),
19
19
  skip_autoload: false,
20
- model_setup: -> {},
20
+ model_setup: ->(model) {},
21
21
  connection_options: {}
22
22
  |
23
23
  unless skip_autoload
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bridgetown_sequel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team