Skip to content

Commit

Permalink
Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Jan 2, 2024
1 parent 94f54f3 commit 7b56289
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
21 changes: 12 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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/
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion bridgetown-core/lib/bridgetown-core/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

module Bridgetown
VERSION = "1.3.1"
VERSION = "1.3.2"
CODE_NAME = "Kelly Butte"
end

0 comments on commit 7b56289

Please sign in to comment.