diff --git a/CHANGELOG.md b/CHANGELOG.md index a9900591..25b3c827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +# [1.19.0](https://github.com/Rebilly/ReDoc/compare/v1.18.1...v1.19.0) (2017-09-21) + + +### Bug Fixes + +* Clearly label version compatibility ([8d849a6](https://github.com/Rebilly/ReDoc/commit/8d849a6)), closes [#338](https://github.com/Rebilly/ReDoc/issues/338) +* HEAD http verb support ([d8b6e02](https://github.com/Rebilly/ReDoc/commit/d8b6e02)), closes [#342](https://github.com/Rebilly/ReDoc/issues/342) + + +### Features + +* add ignoredHeaderParameters option ([56d62e5](https://github.com/Rebilly/ReDoc/commit/56d62e5)) +* add native-scrollbars option to workaround scrolling perf issues ([f2ed92c](https://github.com/Rebilly/ReDoc/commit/f2ed92c)) + + ## [1.18.1](https://github.com/Rebilly/ReDoc/compare/v1.17.0...v1.18.1) (2017-08-28) diff --git a/README.md b/README.md index 7f353c9f..e8ead823 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ We host the latest and all the previous ReDoc releases on GitHub Pages-based **C ## Version Guidance | ReDoc Release | OpenAPI Specification | |:--------------|:----------------------| +| 1.19.x | 2.0 | | 1.18.x | 2.0 | | 1.17.x | 2.0 | diff --git a/package.json b/package.json index 9020bc85..b4cf0485 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "redoc", "description": "Swagger-generated API Reference Documentation", - "version": "1.18.1", + "version": "1.19.0", "repository": { "type": "git", "url": "git://github.com/Rebilly/ReDoc" @@ -14,7 +14,8 @@ "module": "dist/redoc.module.js", "types": "dist/redoc.module.d.ts", "scripts": { - "start": "webpack-dev-server --config build/webpack.dev.js --content-base demo", + "start": + "webpack-dev-server --config build/webpack.dev.js --content-base demo", "start:prod": "NODE_ENV=production npm start", "test": "npm run lint && node ./build/run_tests.js", "lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts", @@ -26,12 +27,14 @@ "e2e-server": "http-server -p 3000 tests/e2e", "e2e-copy": "cp dist/redoc.min.js tests/e2e/", "webdriver": "webdriver-manager update", - "deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo", + "deploy": + "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo", "branch-release": "git reset --hard && branch-release", "clean": "rimraf dist .tmp compiled lib/**/*.css", "ngc": "ngc -p tsconfig.json", "inline": "ng2-inline -o .tmp -r --compress \"lib/**/*.ts\"", - "build:module": "npm run build:sass && npm run inline && ngc -p tsconfig.aot.json && npm run module:css", + "build:module": + "npm run build:sass && npm run inline && ngc -p tsconfig.aot.json && npm run module:css", "module:css": "node build/join-module-css.js", "webpack:prod": "webpack --config build/webpack.prod.js --profile --bail", "build:sass": "node-sass -q -o lib lib",