Skip to content

Commit

Permalink
Release Bridgetown 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Aug 29, 2023
1 parent 237e9e0 commit 9b769d5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [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))
- Upgrade Cucumber to v8.0 [#800](https://github.com/bridgetownrb/bridgetown/pull/800) ([michaelherold](https://github.com/michaelherold))
- Fix `link_to` when passed block [#791](https://github.com/bridgetownrb/bridgetown/pull/791) ([jclusso](https://github.com/jclusso))
- Add configurable inflector with examples for `ActiveSupport::Inflector` [#796](https://github.com/bridgetownrb/bridgetown/pull/796) ([jclusso](https://github.com/jclusso))
- esbuild & webpack version bumps [#802](https://github.com/bridgetownrb/bridgetown/pull/802) ([jaredcwhite](https://github.com/jaredcwhite))
- Add `date` task for generating a front matter friendly date ([jaredcwhite](https://github.com/jaredcwhite))
- Eager load to make DEFAULTS deterministic [#776](https://github.com/bridgetownrb/bridgetown/pull/776) ([michaelherold](https://github.com/michaelherold))
- Feature improvements to i18n localize [#783](https://github.com/bridgetownrb/bridgetown/pull/783) ([akarzim](https://github.com/michaelherold))
- Lock Rubocop to latest version that passes [#779](https://github.com/bridgetownrb/bridgetown/pull/779) ([michaelherold](https://github.com/michaelherold))
- Upgraded docs website to latest Ruby2JS and esbuild
- Thanks to @jclusso and @mtomov for improvements to documentation

## [1.3.0] - 2023-06-18

- esbuild and bundled configurations fixes
Expand Down
18 changes: 9 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.0)
bridgetown-core (= 1.3.0)
bridgetown-builder (1.3.1)
bridgetown-core (= 1.3.1)

PATH
remote: bridgetown-core
specs:
bridgetown-core (1.3.0)
bridgetown-core (1.3.1)
activemodel (>= 6.0, < 8.0)
activesupport (>= 6.0, < 8.0)
addressable (~> 2.4)
Expand All @@ -33,16 +33,16 @@ PATH
PATH
remote: bridgetown-paginate
specs:
bridgetown-paginate (1.3.0)
bridgetown-core (= 1.3.0)
bridgetown-paginate (1.3.1)
bridgetown-core (= 1.3.1)

PATH
remote: bridgetown
specs:
bridgetown (1.3.0)
bridgetown-builder (= 1.3.0)
bridgetown-core (= 1.3.0)
bridgetown-paginate (= 1.3.0)
bridgetown (1.3.1)
bridgetown-builder (= 1.3.1)
bridgetown-core (= 1.3.1)
bridgetown-paginate (= 1.3.1)

GEM
remote: https://rubygems.org/
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.0"
VERSION = "1.3.1"
CODE_NAME = "Kelly Butte"
end

0 comments on commit 9b769d5

Please sign in to comment.