Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit 6b1a118

Browse files
committed
removed private flag in package.json ahead of first published release. pulled out last remnants of promise from core sqlite-parser lib. refs #2
1 parent 4ca4cf4 commit 6b1a118

File tree

7 files changed

+21
-884
lines changed

7 files changed

+21
-884
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased][unreleased]
55

6+
## [v0.9.1] - 2015-07-05
7+
### Changed
8+
- removed `private` flag in `package.json` ahead of first published release
9+
- pulled out last remnants of `promise` from core `sqlite-parser` lib
10+
611
## [v0.9.0] - 2015-07-05
712
### Changed
813
- `sqlite-parser` is now completely **free of runtime dependencies** as `promise` has been removed as a dependency. you can still use the library as a promise-based module, but you have to include and `require('promise')` manually.
@@ -289,8 +294,8 @@ fixed value format for direction key in PRIMARY KEY table contrainsts cleaned up
289294
### Added
290295
- First working version of sqlite-parser
291296

292-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.9.0...HEAD
293-
[v0.9.0]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.0
297+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.9.1...HEAD
298+
[v0.9.1]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.1
294299
[v0.8.0]: https://github.com/codeschool/sqlite-parser/compare/v0.6.0...v0.8.0
295300
[v0.6.0]: https://github.com/codeschool/sqlite-parser/compare/v0.3.1...v0.6.0
296301
[v0.3.1]: https://github.com/codeschool/sqlite-parser/compare/6388118d601a89d011ecd6f5c215bbc9763444db...v0.3.1

demo/sqlite-parser-demo.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28185,7 +28185,7 @@ module.exports = (function (util) {
2818528185
});
2818628186
}
2818728187
return err;
28188-
}
28188+
};
2818928189

2819028190
return Tracer;
2819128191
})(parserUtils);
@@ -40099,8 +40099,7 @@ module.exports = {
4009940099
* @author Nick Wronski <[email protected]>
4010040100
*/
4010140101
;(function (root) {
40102-
var Promise = require('promise/lib/es6-extensions'),
40103-
parser = require('./lib/parser'),
40102+
var parser = require('./lib/parser'),
4010440103
Tracer = require('./lib/tracer');
4010540104

4010640105
function sqliteParser(source, callback) {
@@ -40115,10 +40114,10 @@ module.exports = {
4011540114
}
4011640115
}
4011740116
sqliteParser['NAME'] = 'sqlite-parser';
40118-
sqliteParser['VERSION'] = '0.9.0';
40117+
sqliteParser['VERSION'] = '0.9.1';
4011940118

4012040119
module.exports = root.sqliteParser = sqliteParser;
4012140120
})(typeof self === 'object' ? self : global);
4012240121

4012340122
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
40124-
},{"./lib/parser":2,"./lib/tracer":3,"promise/lib/es6-extensions":10}]},{},[1]);
40123+
},{"./lib/parser":2,"./lib/tracer":3}]},{},[1]);

0 commit comments

Comments
 (0)