From 8faea5ba6b4445f1c7d3dfce652328cd8130239c Mon Sep 17 00:00:00 2001 From: Sean McIntyre Date: Fri, 23 Oct 2020 02:22:34 -0400 Subject: [PATCH] Bumping version for release. Fixing typos --- CONTRIBUTING.md | 1 + README.md | 2 +- documentation.yml | 3 ++- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 34044cd9..d9d88ce5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,6 +9,7 @@ - Keep Ravel small. If some piece of functionality can fit in a separate `ravel-*` module, then it probably should - Code coverage should strictly be enforced at 100% - Please follow the JavaScript coding style exemplified by existing source files and enforced by Ravel's `.eslintrc.json` configuration. +- Active contributors will be included in the `contributors` section of `package.json` ## Sign-off your Commits diff --git a/README.md b/README.md index c5dbd69a..eef1d1d1 100644 --- a/README.md +++ b/README.md @@ -424,7 +424,7 @@ app.set('session key', 'ravel.sid'); // the cookie name to use for sessions app.set('session max age', null); // session maxAge (default never expires) app.set('session secure', true); // toggles Secure attribute for session cookies. true by default, and always true when app.get('https') is true. app.set('session rolling', false); // force a session identifier cookie to be set on every response. The expiration is reset to the original maxAge, resetting the expiration countdown. -app.set('session samesite', null); // set the SameSite property on the session cookie (default not set, this can lead to inconsist behaviour across different browsers) +app.set('session samesite', null); // set the SameSite property on the session cookie (default not set, which can lead to inconsistent behaviour across different browsers) app.set('app route', '/'); // if you have a UI, this is the path users will be sent to when they are logged in app.set('login route', '/login'); // if users aren't logged in and you redirect them, this is where they'll be sent app.set('public directory', undefined); // if you want to statically serve a directory diff --git a/documentation.yml b/documentation.yml index cd5d45c5..4eab95e8 100644 --- a/documentation.yml +++ b/documentation.yml @@ -1,7 +1,8 @@ name: Ravel API -version: 1.0.0-rc.11 +version: 1.0.0-rc.12 favicon: assets/logo.png versions: + - 1.0.0-rc.12 - 1.0.0-rc.11 - 1.0.0-rc.10 - 1.0.0-rc.9 diff --git a/package-lock.json b/package-lock.json index 069de67c..58abd1a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ravel", - "version": "1.0.0-rc.11", + "version": "1.0.0-rc.12", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index efc82826..6a580252 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ravel", - "version": "1.0.0-rc.11", + "version": "1.0.0-rc.12", "author": "Sean McIntyre ", "description": "Ravel Rapid Application Development Framework", "engines": {