Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Aug 18, 2017
2 parents 0ff2452 + 7a40af5 commit b22ef7b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 43 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##### 1.0.1 - 18 August 2017

###### Bug fixes
- Remove `mysql` from dependencies

##### 1.0.0 - 17 August 2017

Stable 1.0.0 release
Expand Down
32 changes: 8 additions & 24 deletions package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-sql",
"description": "Postgres/MySQL/MariaDB/SQLite3 adapter for js-data.",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/js-data/js-data-sql",
"repository": {
"type": "git",
Expand Down Expand Up @@ -66,8 +66,7 @@
"js-data-adapter": "1.0.0",
"knex": ">=0.13.0",
"lodash.snakecase": "4.1.1",
"lodash.tostring": "4.1.4",
"mysql": "^2.14.1"
"lodash.tostring": "4.1.4"
},
"peerDependencies": {
"js-data": ">=3.0.0",
Expand Down
21 changes: 5 additions & 16 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,11 @@ export const version = '<%= version %>'
/**
* {@link SqlAdapter} class.
*
* @example
* @example <caption>CommonJS</caption>
* const SqlAdapter = require('js-data-sql').SqlAdapter;
* const adapter = new SqlAdapter();
*
* @example <caption>ES2015 Modules</caption>
* import { SqlAdapter } from 'js-data-sql';
* const adapter = new SqlAdapter();
*
Expand All @@ -760,21 +764,6 @@ export const version = '<%= version %>'
* @module js-data-sql
*/

/**
* {@link SqlAdapter} class.
*
* @example <caption>CommonJS</caption>
* const SqlAdapter = require('js-data-sql').SqlAdapter;
* const adapter = new SqlAdapter();
*
* @example <caption>ES2015 Modules</caption>
* import { SqlAdapter } from 'js-data-sql';
* const adapter = new SqlAdapter();
*
* @name module:js-data-sql.SqlAdapter
* @see SqlAdapter
*/

/**
* Create a subclass of this SqlAdapter:
* @example <caption>SqlAdapter.extend</caption>
Expand Down

0 comments on commit b22ef7b

Please sign in to comment.