Skip to content

Commit 24557ac

Browse files
author
Phil Sturgeon
authored
Merge pull request #91 from wework/release/0.7.3
Release v0.7.3
2 parents 41d27c3 + 478f4ac commit 24557ac

File tree

3 files changed

+74
-67
lines changed

3 files changed

+74
-67
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.7.3] - 2018-06-19
8+
### Added
9+
- Provide "More Info" links in linter errors, so users understand the reasoning behind various rules. ([#78])
10+
11+
12+
[#90]: https://github.com/wework/speccy/pull/90
13+
714
## [0.7.2] - 2018-05-31
815
### Fixed
916
- Fix `message is undefined` error ([#78])

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+66-66
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,68 @@
11
{
2-
"name": "speccy",
3-
"version": "0.7.2",
4-
"description": "Your friendly OpenAPI v3.0 #WellActually CLI assistant.",
5-
"bin": {
6-
"speccy": "./speccy.js"
7-
},
8-
"scripts": {
9-
"test": "nyc --reporter=html --reporter=text mocha",
10-
"coverage": "nyc report --reporter=text-lcov | coveralls"
11-
},
12-
"preferGlobal": true,
13-
"browserify": {
14-
"transform": [
15-
[
16-
"babelify",
17-
{
18-
"presets": [
19-
"es2015"
20-
]
21-
}
22-
]
23-
]
24-
},
25-
"repository": {
26-
"url": "https://github.com/wework/speccy.git",
27-
"type": "git"
28-
},
29-
"author": "Phil Sturgeon <[email protected]>",
30-
"license": "BSD-3-Clause",
31-
"bugs": {
32-
"url": "https://github.com/wework/speccy/issues"
33-
},
34-
"keywords": [
35-
"swagger",
36-
"openapi",
37-
"openapi3",
38-
"documentation",
39-
"validator",
40-
"validation",
41-
"resolver",
42-
"lint",
43-
"linter"
44-
],
45-
"dependencies": {
46-
"ajv": "^5.0.1",
47-
"commander": "^2.14.1",
48-
"ejs": "^2.5.2",
49-
"express": "^4.14.0",
50-
"js-yaml": "^3.6.1",
51-
"json-schema-to-openapi-schema": "^0.2.0",
52-
"node-fetch": "^1.7.3",
53-
"node-readfiles": "^0.2.0",
54-
"redoc": "next",
55-
"reftools": "0.0.20",
56-
"should": "^13.2.0"
57-
},
58-
"devDependencies": {
59-
"babel-core": "^6.24.1",
60-
"babel-loader": "^7.1.0",
61-
"babel-preset-es2015": "^6.24.1",
62-
"coveralls": "^3.0.0",
63-
"mocha": "^5.0.0",
64-
"nock": "^9.2.3",
65-
"nyc": "^11.6.0",
66-
"webpack": "^3.5.6"
67-
}
2+
"name": "speccy",
3+
"version": "0.7.3",
4+
"description": "Your friendly OpenAPI v3.0 #WellActually CLI assistant.",
5+
"bin": {
6+
"speccy": "./speccy.js"
7+
},
8+
"scripts": {
9+
"test": "nyc --reporter=html --reporter=text mocha",
10+
"coverage": "nyc report --reporter=text-lcov | coveralls"
11+
},
12+
"preferGlobal": true,
13+
"browserify": {
14+
"transform": [
15+
[
16+
"babelify",
17+
{
18+
"presets": [
19+
"es2015"
20+
]
21+
}
22+
]
23+
]
24+
},
25+
"repository": {
26+
"url": "https://github.com/wework/speccy.git",
27+
"type": "git"
28+
},
29+
"author": "Phil Sturgeon <[email protected]>",
30+
"license": "BSD-3-Clause",
31+
"bugs": {
32+
"url": "https://github.com/wework/speccy/issues"
33+
},
34+
"keywords": [
35+
"swagger",
36+
"openapi",
37+
"openapi3",
38+
"documentation",
39+
"validator",
40+
"validation",
41+
"resolver",
42+
"lint",
43+
"linter"
44+
],
45+
"dependencies": {
46+
"ajv": "^5.0.1",
47+
"commander": "^2.14.1",
48+
"ejs": "^2.5.2",
49+
"express": "^4.14.0",
50+
"js-yaml": "^3.6.1",
51+
"json-schema-to-openapi-schema": "^0.2.0",
52+
"node-fetch": "^1.7.3",
53+
"node-readfiles": "^0.2.0",
54+
"redoc": "next",
55+
"reftools": "0.0.20",
56+
"should": "^13.2.0"
57+
},
58+
"devDependencies": {
59+
"babel-core": "^6.24.1",
60+
"babel-loader": "^7.1.0",
61+
"babel-preset-es2015": "^6.24.1",
62+
"coveralls": "^3.0.0",
63+
"mocha": "^5.0.0",
64+
"nock": "^9.2.3",
65+
"nyc": "^11.6.0",
66+
"webpack": "^3.5.6"
67+
}
6868
}

0 commit comments

Comments
 (0)