Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Aug 18, 2024
1 parent 50147ea commit 2d16e54
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
3 changes: 2 additions & 1 deletion bridgetown-core/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2d16e54

Please sign in to comment.