Skip to content

Commit fcb2b0a

Browse files
committed
3.0.0-beta.1
1 parent f1e33a9 commit fcb2b0a

File tree

9 files changed

+66
-73
lines changed

9 files changed

+66
-73
lines changed

AUTHORS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# This is the official list of js-data-rethinkdb project authors.
22
#
33
# Names are formatted as:
4-
# # commits Name or Organization <email address>
4+
# Name or Organization <email address>
5+
#
56
# The email address is not required for organizations.
7+
#
68
InternalFX <[email protected]>
79
Jason Dobry <[email protected]>
810
Ollie Relph <[email protected]>

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
##### 3.0.0-beta.1 - 17 April 2016
2+
3+
Official v3 beta release
4+
5+
###### Other
6+
- Upgraded dependencies
7+
18
##### 3.0.0-alpha.13 - 17 March 2016
29

310
###### Backwards incompatible API changes

CONTRIBUTORS

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# People who have contributed to the js-data-rethinkdb project.
1+
# This is the official list of js-data-rethinkdb project contributors.
22
#
3-
# This file is controlled by scripts/authors.js
3+
# Names are formatted as:
4+
# Name <email address>
45
#
5-
# Names should be added to this file as:
6-
# [commit count] Name <email address>
7-
1 InternalFX <[email protected]>
8-
55 Jason Dobry <[email protected]>
9-
2 Ollie Relph <[email protected]>
6+
InternalFX <[email protected]>
7+
Jason Dobry <[email protected]>
8+
Ollie Relph <[email protected]>

dist/js-data-rethinkdb.js

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-rethinkdb.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-rethinkdb",
33
"description": "RethinkDB adapter for js-data.",
4-
"version": "3.0.0-alpha.13",
4+
"version": "3.0.0-beta.1",
55
"homepage": "https://github.com/js-data/js-data-rethinkdb",
66
"repository": {
77
"type": "git",
@@ -34,7 +34,7 @@
3434
},
3535
"scripts": {
3636
"lint": "repo-tools lint src/index.js mocha.start.js test/**/*.js scripts/**.js rollup.config.js",
37-
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-rethinkdb.js -m dist/js-data-rethinkdb.js.map src/index.js",
37+
"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",
3838
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src && node scripts/cleanup.js",
3939
"watch": "watch \"npm run bundle\" src/",
4040
"build": "npm run lint && npm run bundle",
@@ -43,29 +43,28 @@
4343
"test": "npm run build && npm run cover",
4444
"repo-tools": "repo-tools updates && repo-tools changelog && repo-tools authors",
4545
"release": "npm test && npm run doc && npm run repo-tools",
46-
"ci": "npm run test && cat coverage/lcov.info | coveralls || true"
46+
"ci": "npm run test && cat coverage/lcov.info | codecov || true"
4747
},
4848
"dependencies": {
49-
"js-data-adapter": "0.2.3",
50-
"mout": "0.12.0"
49+
"js-data-adapter": "~0.3.0",
50+
"mout": "1.0.0"
5151
},
5252
"peerDependencies": {
53-
"js-data": "^3.0.0-alpha.19",
53+
"js-data": "^3.0.0-beta.1",
5454
"rethinkdbdash": ">=1.15.0"
5555
},
5656
"devDependencies": {
57-
"babel-core": "6.7.2",
58-
"babel-polyfill": "6.7.2",
57+
"babel-core": "6.7.6",
58+
"babel-polyfill": "6.7.4",
5959
"babel-preset-es2015-rollup": "1.1.1",
6060
"chai": "3.5.0",
61-
"coveralls": "2.11.8",
6261
"ink-docstrap": "1.1.4",
63-
"istanbul": "0.4.2",
62+
"istanbul": "0.4.3",
6463
"js-data-adapter-tests": "^2.0.0-alpha.15",
65-
"js-data-repo-tools": "0.2.0",
64+
"js-data-repo-tools": "0.3.0",
6665
"jsdoc": "3.4.0",
6766
"mocha": "2.4.5",
68-
"rollup": "0.25.4",
67+
"rollup": "0.25.8",
6968
"rollup-plugin-babel": "2.4.0",
7069
"sinon": "1.17.3",
7170
"source-map-support": "0.4.0",

scripts/CONTRIBUTORS

Lines changed: 0 additions & 6 deletions
This file was deleted.

scripts/authors.js

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,22 @@ Object.defineProperty(RethinkDBAdapter, '__super__', {
281281
*/
282282
RethinkDBAdapter.extend = utils.extend
283283

284+
/**
285+
* Details of the current version of the `js-data-rethinkdb` module.
286+
*
287+
* @name RethinkDBAdapter.version
288+
* @type {Object}
289+
* @property {string} full The full semver value.
290+
* @property {number} major The major version number.
291+
* @property {number} minor The minor version number.
292+
* @property {number} patch The patch version number.
293+
* @property {(string|boolean)} alpha The alpha version value, otherwise `false`
294+
* if the current version is not alpha.
295+
* @property {(string|boolean)} beta The beta version value, otherwise `false`
296+
* if the current version is not beta.
297+
*/
298+
RethinkDBAdapter.version = '<%= version %>'
299+
284300
RethinkDBAdapter.OPERATORS = OPERATORS
285301

286302
utils.addHiddenPropsToTarget(RethinkDBAdapter.prototype, {

0 commit comments

Comments
 (0)