Skip to content

Commit 8a023b4

Browse files
authored
Merge pull request #2099 from roots/9.0.2
9.0.2
2 parents 0d4b251 + d7acd3a commit 8a023b4

File tree

7 files changed

+127
-223
lines changed

7 files changed

+127
-223
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### 9.0.2: August 21st, 2018
2+
* Update to Bootstrap 4.1.3 ([#2097](https://github.com/roots/sage/pull/2097))
3+
* Comments template fix ([#2095](https://github.com/roots/sage/pull/2095))
4+
* UglifyJs: Change the ecma option from 8 to 5 ([#2092](https://github.com/roots/sage/pull/2092))
5+
* Add searchform partial and function to replace default WordPress functionality ([#2090](https://github.com/roots/sage/pull/2090))
6+
* Change language_attributes() to get_language_attributes() ([#2089](https://github.com/roots/sage/pull/2089))
7+
* Fix missing comment-reply JS ([#2085](https://github.com/roots/sage/pull/2085))
8+
* Use better merge method for Webpack Preset config ([#2084](https://github.com/roots/sage/pull/2084))
9+
* Add support for preset specific Webpack config ([#2083](https://github.com/roots/sage/pull/2083))
10+
* Enable Sass comments and run prefixing before minification ([#2078](https://github.com/roots/sage/pull/2078))
11+
* Set removeViewBox to 'false' in webpack's optimization settings ([#2075](https://github.com/roots/sage/pull/2075))
12+
* Add uglifyjs plugin ([#2070](https://github.com/roots/sage/pull/2070))
13+
* Make template() compatible with wp admin ([#2068](https://github.com/roots/sage/pull/2068))
14+
* Upgrade to Controller 2.1.0 ([#2025](https://github.com/roots/sage/pull/2025))
15+
116
### 9.0.1: April 30th, 2018
217
* Update to Bootstrap 4.1.1 ([#2065](https://github.com/roots/sage/pull/2065))
318
* Auto-detect `proxyUrl` scheme ([#2062](https://github.com/roots/sage/pull/2062))

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Sage is a WordPress starter theme with a modern development workflow.
1111
* Modern JavaScript
1212
* [Webpack](https://webpack.github.io/) for compiling assets, optimizing images, and concatenating and minifying files
1313
* [Browsersync](http://www.browsersync.io/) for synchronized browser testing
14-
* [Blade](https://laravel.com/docs/5.5/blade) as a templating engine
14+
* [Blade](https://laravel.com/docs/5.6/blade) as a templating engine
1515
* [Controller](https://github.com/soberwp/controller) for passing data to Blade templates
16-
* CSS framework (optional): [Bootstrap 4](https://getbootstrap.com/), [Bulma](https://bulma.io/), [Foundation](https://foundation.zurb.com/), [Tachyons](http://tachyons.io/)
16+
* CSS framework (optional): [Bootstrap 4](https://getbootstrap.com/), [Bulma](https://bulma.io/), [Foundation](https://foundation.zurb.com/), [Tachyons](http://tachyons.io/), [Tailwind](https://tailwindcss.com/)
1717

1818
See a working example at [roots-example-project.com](https://roots-example-project.com/).
1919

@@ -49,7 +49,7 @@ During theme installation you will have options to update `style.css` theme head
4949
```shell
5050
themes/your-theme-name/ # → Root of your Sage based theme
5151
├── app/ # → Theme PHP
52-
│ ├── controllers/ # → Controller files
52+
│ ├── Controllers/ # → Controller files
5353
│ ├── admin.php # → Theme customizer setup
5454
│ ├── filters.php # → Theme filters
5555
│ ├── helpers.php # → Helper functions

app/filters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
}
8181

8282
return $comments_template;
83-
}, PHP_INT_MAX);
83+
}, 100);
8484

8585
/**
8686
* Render WordPress searchform using Blade

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"php": ">=7.1",
3636
"composer/installers": "~1.0",
3737
"illuminate/support": "~5.6",
38-
"roots/sage-lib": "~9.0.1",
38+
"roots/sage-lib": "~9.0.2",
3939
"soberwp/controller": "~2.1.0"
4040
},
4141
"require-dev": {

0 commit comments

Comments
 (0)