Skip to content

Commit 2da2669

Browse files
author
Phil Sturgeon
authored
Merge pull request #68 from wework/release/0.7.0
Release v0.7.0
2 parents ce112a6 + 941bc13 commit 2da2669

File tree

3 files changed

+32
-18
lines changed

3 files changed

+32
-18
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.0] - 2018-05-10
8+
### Breaking Change
9+
- Error now raised for all commands when `$ref` points to a file that does not exist, or cannot be opened
10+
### Fixed
11+
- Bumped `json-schema-to-openapi-schema` to v0.2.0 so subschemas will be converted
12+
- Invalid keywords will be stripped everywhere instead of just root
13+
714
## [0.6.0] - 2018-05-04
815
## Removed
916
- Removed switch `--watch` as it didn't actually work, and was flagging "security issues" on npm ([#46])

package-lock.json

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

package.json

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speccy",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Your friendly OpenAPI v3.0 #WellActually CLI assistant.",
55
"bin": {
66
"speccy": "./speccy.js"
@@ -31,31 +31,30 @@
3131
"bugs": {
3232
"url": "https://github.com/wework/speccy/issues"
3333
},
34+
"keywords": [
35+
"swagger",
36+
"openapi",
37+
"openapi3",
38+
"documentation",
39+
"validator",
40+
"validation",
41+
"resolver",
42+
"lint",
43+
"linter"
44+
],
3445
"dependencies": {
3546
"ajv": "^5.0.1",
3647
"commander": "^2.14.1",
3748
"ejs": "^2.5.2",
3849
"express": "^4.14.0",
3950
"js-yaml": "^3.6.1",
40-
"json-schema-to-openapi-schema": "^0.1.1",
51+
"json-schema-to-openapi-schema": "^0.2.0",
4152
"node-fetch": "^1.7.3",
4253
"node-readfiles": "^0.2.0",
4354
"redoc": "next",
4455
"reftools": "0.0.20",
4556
"should": "^13.2.0"
4657
},
47-
"keywords": [
48-
"swagger",
49-
"openapi",
50-
"openapi2",
51-
"openapi3",
52-
"documentation",
53-
"validator",
54-
"validation",
55-
"resolver",
56-
"lint",
57-
"linter"
58-
],
5958
"devDependencies": {
6059
"babel-core": "^6.24.1",
6160
"babel-loader": "^7.1.0",

0 commit comments

Comments
 (0)