Skip to content

Commit 5500ddc

Browse files
author
Phil Sturgeon
authored
Release v0.8.6 (#230)
* Added install instructions (thanks @toymachiner62) * Release v0.8.6 * Updated docs rack version * Update json-schema-to-openapi-schema v0.3.0 * Fix yarn example
1 parent 3a7a87e commit 5500ddc

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@ 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-
## [Unreleased]
7+
## [0.8.6] - 2018-12-18
88
### Added
99
- `notContain` rulesets can now support pattern matching. ([#208] via [@erunion])
1010
### Fixed
1111
- Support options after the command name, and at the end of the command ([#229])
12+
### Improved
13+
- Bumped `json-schema-to-openapi-schema` to v0.3.0 to handle if/then/else, const, exclusiveMiniumum/exclusiveMaximum, and empty `items` in type: array. Thanks [@MikeRalphson]!
1214

1315
[@erunion]: https://github.com/erunion
16+
[@MikeRalphson]: https://github.com/MikeRalphson
1417
[#208]: https://github.com/wework/speccy/issues/208
1518
[#229]: https://github.com/wework/speccy/pull/229
1619

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ Currently tracking [v3.0.0](https://github.com/OAI/OpenAPI-Specification/blob/ma
1818

1919
If you want to run speccy on OpenAPI (f.k.a Swagger) v2.0 specs, run it through [swagger2openapi] first and speccy can give advice on the output.
2020

21+
## Setup
22+
23+
You can install this node module via NPM or Yarn.
24+
25+
```sh
26+
$ npm install speccy -g
27+
# or
28+
$ yarn global add speccy
29+
```
30+
31+
Alternatively, you can use it with Docker (see "Using Docker" below.)
32+
2133
## Usage
2234

2335
```
@@ -189,7 +201,7 @@ To lint your specifications before committing them you can use [lint-staged](htt
189201

190202
```
191203
"husky": {
192-
"hooks": {
204+
"hooks": {
193205
"pre-commit": "lint-staged"
194206
}
195207
},

docs/Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ GEM
223223
pathutil (0.16.1)
224224
forwardable-extended (~> 2.6)
225225
public_suffix (2.0.5)
226-
rack (1.6.10)
226+
rack (1.6.11)
227227
rb-fsevent (0.10.3)
228228
rb-inotify (0.9.10)
229229
ffi (>= 0.5.0, < 2)
@@ -263,4 +263,4 @@ DEPENDENCIES
263263
tzinfo-data
264264

265265
BUNDLED WITH
266-
1.16.6
266+
1.17.2

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speccy",
3-
"version": "0.8.5",
3+
"version": "0.8.6",
44
"description": "An OpenAPI v3 development workflow assistant",
55
"homepage": "https://speccy.io/",
66
"bin": {

0 commit comments

Comments
 (0)