Skip to content

Commit

Permalink
3.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Apr 18, 2016
1 parent f1e33a9 commit fcb2b0a
Show file tree
Hide file tree
Showing 9 changed files with 66 additions and 73 deletions.
4 changes: 3 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# This is the official list of js-data-rethinkdb project authors.
#
# Names are formatted as:
# # commits Name or Organization <email address>
# Name or Organization <email address>
#
# The email address is not required for organizations.
#
InternalFX <[email protected]>
Jason Dobry <[email protected]>
Ollie Relph <[email protected]>
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
##### 3.0.0-beta.1 - 17 April 2016

Official v3 beta release

###### Other
- Upgraded dependencies

##### 3.0.0-alpha.13 - 17 March 2016

###### Backwards incompatible API changes
Expand Down
13 changes: 6 additions & 7 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# People who have contributed to the js-data-rethinkdb project.
# This is the official list of js-data-rethinkdb project contributors.
#
# This file is controlled by scripts/authors.js
# Names are formatted as:
# Name <email address>
#
# Names should be added to this file as:
# [commit count] Name <email address>
1 InternalFX <[email protected]>
55 Jason Dobry <[email protected]>
2 Ollie Relph <[email protected]>
InternalFX <[email protected]>
Jason Dobry <[email protected]>
Ollie Relph <[email protected]>
22 changes: 22 additions & 0 deletions dist/js-data-rethinkdb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js-data-rethinkdb.js.map

Large diffs are not rendered by default.

23 changes: 11 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-rethinkdb",
"description": "RethinkDB adapter for js-data.",
"version": "3.0.0-alpha.13",
"version": "3.0.0-beta.1",
"homepage": "https://github.com/js-data/js-data-rethinkdb",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"scripts": {
"lint": "repo-tools lint src/index.js mocha.start.js test/**/*.js scripts/**.js rollup.config.js",
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-rethinkdb.js -m dist/js-data-rethinkdb.js.map src/index.js",
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-rethinkdb.js -m dist/js-data-rethinkdb.js.map src/index.js && repo-tools write-version dist/js-data-rethinkdb.js",
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src && node scripts/cleanup.js",
"watch": "watch \"npm run bundle\" src/",
"build": "npm run lint && npm run bundle",
Expand All @@ -43,29 +43,28 @@
"test": "npm run build && npm run cover",
"repo-tools": "repo-tools updates && repo-tools changelog && repo-tools authors",
"release": "npm test && npm run doc && npm run repo-tools",
"ci": "npm run test && cat coverage/lcov.info | coveralls || true"
"ci": "npm run test && cat coverage/lcov.info | codecov || true"
},
"dependencies": {
"js-data-adapter": "0.2.3",
"mout": "0.12.0"
"js-data-adapter": "~0.3.0",
"mout": "1.0.0"
},
"peerDependencies": {
"js-data": "^3.0.0-alpha.19",
"js-data": "^3.0.0-beta.1",
"rethinkdbdash": ">=1.15.0"
},
"devDependencies": {
"babel-core": "6.7.2",
"babel-polyfill": "6.7.2",
"babel-core": "6.7.6",
"babel-polyfill": "6.7.4",
"babel-preset-es2015-rollup": "1.1.1",
"chai": "3.5.0",
"coveralls": "2.11.8",
"ink-docstrap": "1.1.4",
"istanbul": "0.4.2",
"istanbul": "0.4.3",
"js-data-adapter-tests": "^2.0.0-alpha.15",
"js-data-repo-tools": "0.2.0",
"js-data-repo-tools": "0.3.0",
"jsdoc": "3.4.0",
"mocha": "2.4.5",
"rollup": "0.25.4",
"rollup": "0.25.8",
"rollup-plugin-babel": "2.4.0",
"sinon": "1.17.3",
"source-map-support": "0.4.0",
Expand Down
6 changes: 0 additions & 6 deletions scripts/CONTRIBUTORS

This file was deleted.

46 changes: 0 additions & 46 deletions scripts/authors.js

This file was deleted.

16 changes: 16 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,22 @@ Object.defineProperty(RethinkDBAdapter, '__super__', {
*/
RethinkDBAdapter.extend = utils.extend

/**
* Details of the current version of the `js-data-rethinkdb` module.
*
* @name RethinkDBAdapter.version
* @type {Object}
* @property {string} full The full semver value.
* @property {number} major The major version number.
* @property {number} minor The minor version number.
* @property {number} patch The patch version number.
* @property {(string|boolean)} alpha The alpha version value, otherwise `false`
* if the current version is not alpha.
* @property {(string|boolean)} beta The beta version value, otherwise `false`
* if the current version is not beta.
*/
RethinkDBAdapter.version = '<%= version %>'

RethinkDBAdapter.OPERATORS = OPERATORS

utils.addHiddenPropsToTarget(RethinkDBAdapter.prototype, {
Expand Down

0 comments on commit fcb2b0a

Please sign in to comment.