diff --git a/CHANGELOG.md b/CHANGELOG.md index 5528cf973..231f2875a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## [2.0.0] - 2024-08-02 +## [2.0.0.beta2] - 2024-08-18 + +- Fixed: Beta-related install issues with Bundler (by making `bridgetown-foundation` a direct dependency of `bridgetown`, and relocating versioning responsibility to the foundation gem) +- Fixed: new command still outputs Liquid code by default in posts.md +- Add additional Array features to Collection directly (`.last`, `[]`) +- Allow plugin gems to provide "features" which are automatically required [#900](https://github.com/bridgetownrb/bridgetown/pull/900) ([@jaredcwhite](https://github.com/jaredcwhite)) + +## [2.0.0.beta1] - 2024-08-02 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ebc9981fd..8e0321f2d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,7 +39,7 @@ We would like to avoid all ethical and legal challenges that result from using A If you are the current maintainer of this gem: -1. Bump gem version in `bridgetown-core/lib/bridgetown-core/version.rb`. Try to adhere to SemVer. +1. Bump gem version in `bridgetown-foundation/lib/bridgetown/version.rb`. Try to adhere to SemVer. 1. Add version heading/entries to `CHANGELOG.md`. 1. Make sure your local dependencies are up to date: `bundle` 1. Ensure that tests pass and build/release all monorepo gems: `bundle exec rake release_all` diff --git a/bridgetown-core/Rakefile b/bridgetown-core/Rakefile index a3dcdfbfe..e02646622 100644 --- a/bridgetown-core/Rakefile +++ b/bridgetown-core/Rakefile @@ -3,7 +3,8 @@ require "bundler/gem_tasks" $LOAD_PATH.unshift File.expand_path("lib", __dir__) -require "bridgetown-core/version" +$LOAD_PATH.unshift File.expand_path("../bridgetown-foundation/lib", __dir__) +require "bridgetown/version" task spec: :test require "rake/testtask"