diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 34044cd..d9d88ce 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 c5dbd69..eef1d1d 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 cd5d45c..4eab95e 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 069de67..58abd1a 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 efc8282..6a58025 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": {