Skip to content

Commit

Permalink
Fix lambda error in initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Apr 3, 2024
1 parent 5d43568 commit 64c3d52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- ...
## [1.1.1] - 2024-04-03

- Fix lambda error in initializer

## [1.1.0] - 2024-04-03

Expand Down
2 changes: 1 addition & 1 deletion lib/bridgetown_sequel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def self.load_tasks(models_dir: "models")
config,
models_dir: ENV.fetch("BRIDGETOWN_SEQUEL_MODELS_DIR", "models"),
skip_autoload: false,
model_setup: -> {},
model_setup: ->(model) {},
connection_options: {}
|
unless skip_autoload
Expand Down
2 changes: 1 addition & 1 deletion lib/bridgetown_sequel/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module BridgetownSequel
VERSION = "1.1.0"
VERSION = "1.1.1"
end

0 comments on commit 64c3d52

Please sign in to comment.