Skip to content

Commit

Permalink
Release 1.1.0.beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Jun 2, 2022
1 parent 2792d0e commit b4b23dd
Show file tree
Hide file tree
Showing 3 changed files with 6 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,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.0.beta1] — 2022-06-01

- New bundled configurations: Lit, Shoelace, Ruby2JS, Open Props [#553](https://github.com/bridgetownrb/bridgetown/pull/553) ([jaredcwhite](https://github.com/jaredcwhite))
- NOTE: "frontend component files" (aka `.js`/`.css` files within the `src/_components` folder) will now be ignored by the build process watcher, thus allowing the frontend bundling refresh to trigger a dev reload
- Improve Roda error handling and update static error pages [#565](https://github.com/bridgetownrb/bridgetown/pull/565) ([jaredcwhite](https://github.com/jaredcwhite))
Expand Down Expand Up @@ -43,7 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **BREAKING CHANGE:** (maybe) If you had long-running code in a plugin `build` method or a hook, this might surprise you when you live reload in dev using dynamic routes. Use `site.ssr?` if you want to bypass code in SSR mode.
- Fix bug where sidecar aux process wasn't requiring bundler groups [#532](https://github.com/bridgetownrb/bridgetown/pull/532) ([jaredcwhite](https://github.com/jaredcwhite))

## 1.0.0 (stable release) — 2022-03-07
## [1.0.0] (stable release) — 2022-03-07

- Add bundled configuration for GH pages [#503](https://github.com/bridgetownrb/bridgetown/pull/503) ([ayushn21](https://github.com/ayushn21))
- Fix `base_path` issues with Roda and site templates [#510](https://github.com/bridgetownrb/bridgetown/pull/510) ([jaredcwhite](https://github.com/jaredcwhite))
Expand Down
4 changes: 2 additions & 2 deletions 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.0.0"
CODE_NAME = "Pearl"
VERSION = "1.1.0.beta1"
CODE_NAME = "Belmont"
end
1 change: 1 addition & 0 deletions bridgetown-website/plugins/builders/versions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def build
hook :site, :post_read do
if Bridgetown::VERSION.include?("alpha") || Bridgetown::VERSION.include?("beta")
site.data.edge_version = true
site.metadata.title += " [EDGE]"

site.config.url = site.config.url.sub("www.", "edge.")
end
Expand Down

0 comments on commit b4b23dd

Please sign in to comment.