Skip to content

Commit 549d648

Browse files
chore(release): v1.0.0..v1.1.0
1 parent 6643007 commit 549d648

File tree

2 files changed

+32
-21
lines changed

2 files changed

+32
-21
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="1.1.0"></a>
2+
# [1.1.0](https://github.com/posthtml/posthtml-expressions/compare/v1.0.0...v1.1.0) (2016-12-14)
3+
4+
5+
### Bug Fixes
6+
7+
* **index:** comments ([553b0fa](https://github.com/posthtml/posthtml-expressions/commit/553b0fa))
8+
* **index:** copy/paste for loops ([c865969](https://github.com/posthtml/posthtml-expressions/commit/c865969))
9+
10+
### Features
11+
12+
* **index:** add switch statement ([88058d1](https://github.com/posthtml/posthtml-expressions/commit/88058d1))
13+
14+
15+
116
<a name="1.0.0"></a>
217
# [1.0.0](https://github.com/posthtml/posthtml-expressions/compare/v0.9.0...v1.0.0) (2016-11-19)
318

@@ -7,7 +22,7 @@
722
* patch to fix expressions in else/elseif blocks ([f50c36f](https://github.com/posthtml/posthtml-expressions/commit/f50c36f))
823
* **index:** Fix issue with conditional in loops ([58b1f50](https://github.com/posthtml/posthtml-expressions/commit/58b1f50))
924
* **index:** remove console.log, fix comment ([c5b7887](https://github.com/posthtml/posthtml-expressions/commit/c5b7887))
10-
* **lib:** add missing 'use strict' statement ([d175716](https://github.com/posthtml/posthtml-expressions/commit/d175716))
25+
* **lib:** add missing 'use strict' statement ([4078c90](https://github.com/posthtml/posthtml-expressions/commit/4078c90))
1126
* **placeholders:** Fix typo in "matches" ([e0d38bd](https://github.com/posthtml/posthtml-expressions/commit/e0d38bd))
1227

1328
### Features

package.json

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
11
{
22
"name": "posthtml-expressions",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Expressions Plugin for PostHTML",
5-
"engines": { "npm": ">=3", "node": ">=4" },
5+
"engines": { "node": ">=4" },
66
"main":"lib",
77
"scripts": {
88
"lint": "standard",
9-
"test": "nyc ava test/index.js",
9+
"test": "nyc ava -v test/index.js",
1010
"logs": "standard-changelog -i CHANGELOG.md -w",
1111
"docs": "jsdoc2md lib/*.js > INDEX.md",
1212
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
1313
"start": "sudo npm run clean && npm run lint && sudo npm test"
1414
},
1515
"dependencies": {
16-
"fclone": "^1.0.10"
16+
"fclone": "^1.x"
1717
},
1818
"devDependencies": {
19-
"ava": "^0.17.0",
20-
"coveralls": "^2.11.15",
21-
"jsdoc-to-markdown": "^2.0.0",
22-
"nyc": "^10.0.0",
23-
"posthtml": "^0.9.1",
24-
"standard": "^8.4.0",
25-
"standard-changelog": "^0.0.1"
26-
},
27-
"ava": {
28-
"verbose": "true"
29-
},
30-
"nyc": {
31-
"all": true,
32-
"include": ["lib"],
33-
"extension": [".js"]
34-
},
19+
"ava": "^0.17.x",
20+
"coveralls": "^2.x",
21+
"jsdoc-to-markdown": "^2.x",
22+
"nyc": "^10.x",
23+
"posthtml": "^0.9.x",
24+
"standard": "^8.x",
25+
"standard-changelog": "^0.0.x"
26+
},
27+
"files": [
28+
"lib",
29+
"LICENSE"
30+
],
3531
"keywords": [
3632
"expressions",
3733
"posthtml",

0 commit comments

Comments
 (0)