diff --git a/CHANGELOG.md b/CHANGELOG.md index 052fa3e16..06505325a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [1.3.2] - 2024-01-01 + +- Fix logs and console for Ruby 3.3 [#834](https://github.com/bridgetownrb/bridgetown/pull/834) ([jaredcwhite](https://github.com/jaredcwhite)) +- Auto-detect package manager in the plugin manager [#821](https://github.com/bridgetownrb/bridgetown/pull/821) ([KonnorRogers](https://github.com/KonnorRogers)) + This allows for support of non-Yarn package managers such as npm and pnpm +- Allow consistent permitting classes [#795](https://github.com/bridgetownrb/bridgetown/pull/795) ([michaelherold](https://github.com/michaelherold)) +- Show a reloading log for Roda routes in the server folder [#818](https://github.com/bridgetownrb/bridgetown/pull/818) ([jaredcwhite](https://github.com/jaredcwhite)) +- Fixed localization of paginated resources error [#790](https://github.com/bridgetownrb/bridgetown/pull/790) ([jclusso](https://github.com/jclusso)) +- Catch error and log when PostCSS conversion fails [#812](https://github.com/bridgetownrb/bridgetown/pull/812) ([jaredcwhite](https://github.com/jaredcwhite)) +- Thanks to @bkjohnson, @jaredmoody, and @jclusso for improvements to documentation + ## [1.3.1] - 2023-08-29 - Fix bug with prototype page pagination not working for paginate [#804](https://github.com/bridgetownrb/bridgetown/pull/804) ([jaredcwhite](https://github.com/jaredcwhite)) diff --git a/Gemfile.lock b/Gemfile.lock index a91665e25..daadcecd1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: bridgetown-builder specs: - bridgetown-builder (1.3.1) - bridgetown-core (= 1.3.1) + bridgetown-builder (1.3.2) + bridgetown-core (= 1.3.2) PATH remote: bridgetown-core specs: - bridgetown-core (1.3.1) + bridgetown-core (1.3.2) 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.1) - bridgetown-core (= 1.3.1) + bridgetown-paginate (1.3.2) + bridgetown-core (= 1.3.2) PATH remote: bridgetown specs: - bridgetown (1.3.1) - bridgetown-builder (= 1.3.1) - bridgetown-core (= 1.3.1) - bridgetown-paginate (= 1.3.1) + bridgetown (1.3.2) + bridgetown-builder (= 1.3.2) + bridgetown-core (= 1.3.2) + bridgetown-paginate (= 1.3.2) GEM remote: https://rubygems.org/ @@ -152,6 +152,9 @@ GEM nokogiri (1.16.0-x86_64-linux) racc (~> 1.4) nokolexbor (0.5.2) + nokolexbor (0.5.2-arm64-darwin) + nokolexbor (0.5.2-x86_64-darwin) + nokolexbor (0.5.2-x86_64-linux) parallel (1.24.0) parser (3.2.2.4) ast (~> 2.4.1) diff --git a/bridgetown-core/lib/bridgetown-core/version.rb b/bridgetown-core/lib/bridgetown-core/version.rb index c40b0a27c..a172e1ddb 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.1" + VERSION = "1.3.2" CODE_NAME = "Kelly Butte" end