diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f149c4f..96f85e2d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # main +# 0.19.0 / 2020-12-22 + * Improve our active ActiveSupport support =) [#215](https://github.com/bridgetownrb/bridgetown/pull/215) ([jaredcwhite](https://github.com/jaredcwhite)) * Add `filters_scope` option to liquid_filter DSL [#214](https://github.com/bridgetownrb/bridgetown/pull/214) ([jaredcwhite](https://github.com/jaredcwhite)) * Deprecate `PageWithoutAFile` class. It will be removed in v0.20. * Specify Webrick as a gem dependency now that it's no longer in the stdlib in Ruby 3 -* Website: documentation how to install Bridgetown in Fedora ([bkmgit](https://github.com/bkmgit)) +* Website: documentation on how to install Bridgetown in Fedora ([bkmgit](https://github.com/bkmgit)) * Add modules resolve paths to default webpack config [#206](https://github.com/bridgetownrb/bridgetown/pull/206) ([ayushn21](https://github.com/ayushn21)) * Add an empty PostCSS configuration option to the "new" command [#190](https://github.com/bridgetownrb/bridgetown/pull/190) ([ayushn21](https://github.com/ayushn21)) * Fix obfuscate link syntax [#203](https://github.com/bridgetownrb/bridgetown/pull/203) [julianrubisch](https://github.com/julianrubisch)) diff --git a/bridgetown-core/lib/bridgetown-core/version.rb b/bridgetown-core/lib/bridgetown-core/version.rb index 5b04e374f..41e158352 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 = "0.18.6" - CODE_NAME = "Taylor Street" + VERSION = "0.19.0" + CODE_NAME = "Arbor Lodge" end diff --git a/bridgetown-website/src/_docs/frontend-assets.md b/bridgetown-website/src/_docs/frontend-assets.md index ad4d1cee7..dbf1b42ab 100644 --- a/bridgetown-website/src/_docs/frontend-assets.md +++ b/bridgetown-website/src/_docs/frontend-assets.md @@ -1,5 +1,5 @@ --- -title: Frontend Assets (Webpack) +title: Frontend Bundling (CSS/JS/etc.) order: 17 top_section: Content category: frontendassets @@ -37,7 +37,7 @@ And the update your HTML layout according to the Swup install guide. ## CSS -By default Bridgetown uses [Sass](https://sass-lang.com), a pre-processor for CSS; but you can pass `--use-postcss` to `bridgetown new` to setup `PostCSS` which is popular with the Webpack community. (NOTE: only in `main`, not yet released…) +By default Bridgetown uses [Sass](https://sass-lang.com), a pre-processor for CSS; but you can pass `--use-postcss` to `bridgetown new` to setup `PostCSS` which is popular with the Webpack community. ### Sass @@ -69,7 +69,7 @@ and then add: to `index.scss`. -### PostCSS (on main, not yet released) +### PostCSS You can run `bridgetown new mysite --use-postcss` to configure your site with PostCSS right out-of-the-box. diff --git a/bridgetown-website/src/_docs/structure.md b/bridgetown-website/src/_docs/structure.md index 8c4a76443..9dba47a34 100644 --- a/bridgetown-website/src/_docs/structure.md +++ b/bridgetown-website/src/_docs/structure.md @@ -10,7 +10,7 @@ The typical folder structure for a Bridgetown site usually looks something like ```shell . -├── frontend # this is where you put your frontend assets for Webpack +├── frontend # this is where you put your CSS and JS for Webpack │ ├── javascript │ │ ├── index.js │ │ └── widget.js