Skip to content

Commit

Permalink
0.19.0 Arbor Lodge release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Dec 22, 2020
1 parent ec5e3b1 commit f6129f0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
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 = "0.18.6"
CODE_NAME = "Taylor Street"
VERSION = "0.19.0"
CODE_NAME = "Arbor Lodge"
end
6 changes: 3 additions & 3 deletions bridgetown-website/src/_docs/frontend-assets.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Frontend Assets (Webpack)
title: Frontend Bundling (CSS/JS/etc.)
order: 17
top_section: Content
category: frontendassets
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion bridgetown-website/src/_docs/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f6129f0

Please sign in to comment.