From b4b23dd8c516c762c9178680c5b46ea89fe2e9e0 Mon Sep 17 00:00:00 2001 From: Jared White Date: Wed, 1 Jun 2022 20:14:58 -0700 Subject: [PATCH] Release 1.1.0.beta1 --- CHANGELOG.md | 4 +++- bridgetown-core/lib/bridgetown-core/version.rb | 4 ++-- bridgetown-website/plugins/builders/versions.rb | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f82b3561..0fa557078 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) @@ -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)) diff --git a/bridgetown-core/lib/bridgetown-core/version.rb b/bridgetown-core/lib/bridgetown-core/version.rb index bed6fdebb..6884ee259 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.0.0" - CODE_NAME = "Pearl" + VERSION = "1.1.0.beta1" + CODE_NAME = "Belmont" end diff --git a/bridgetown-website/plugins/builders/versions.rb b/bridgetown-website/plugins/builders/versions.rb index b88efc811..30e3c8700 100644 --- a/bridgetown-website/plugins/builders/versions.rb +++ b/bridgetown-website/plugins/builders/versions.rb @@ -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