diff --git a/CHANGELOG.md b/CHANGELOG.md index f2cf1989f..f4cd36d11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [1.3.4] - 2024-03-28 + +- Fix: Lock Liquid to version < 5.5 (unresolved data leakage and generation errors otherwise) +- Fix: esbuild file endings from previous release + ## [1.3.3] - 2024-03-16 - Use global regex for Stimulus Configuration [#865](https://github.com/bridgetownrb/bridgetown/pull/865) ([@MSILycanthropy](https://github.com/MSILycanthropy)) diff --git a/Gemfile.lock b/Gemfile.lock index c1f837b81..d5b5d15b9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: bridgetown-builder specs: - bridgetown-builder (1.3.3) - bridgetown-core (= 1.3.3) + bridgetown-builder (1.3.4) + bridgetown-core (= 1.3.4) PATH remote: bridgetown-core specs: - bridgetown-core (1.3.3) + bridgetown-core (1.3.4) activemodel (>= 6.0, < 8.0) activesupport (>= 6.0, < 8.0) addressable (~> 2.4) @@ -34,16 +34,16 @@ PATH PATH remote: bridgetown-paginate specs: - bridgetown-paginate (1.3.3) - bridgetown-core (= 1.3.3) + bridgetown-paginate (1.3.4) + bridgetown-core (= 1.3.4) PATH remote: bridgetown specs: - bridgetown (1.3.3) - bridgetown-builder (= 1.3.3) - bridgetown-core (= 1.3.3) - bridgetown-paginate (= 1.3.3) + bridgetown (1.3.4) + bridgetown-builder (= 1.3.4) + bridgetown-core (= 1.3.4) + bridgetown-paginate (= 1.3.4) GEM remote: https://rubygems.org/ diff --git a/bridgetown-core/lib/bridgetown-core/version.rb b/bridgetown-core/lib/bridgetown-core/version.rb index ba51785a8..0107f5872 100644 --- a/bridgetown-core/lib/bridgetown-core/version.rb +++ b/bridgetown-core/lib/bridgetown-core/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Bridgetown - VERSION = "1.3.3" + VERSION = "1.3.4" CODE_NAME = "Kelly Butte" end