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

Commit

Permalink
removed private flag in package.json ahead of first published release…
Browse files Browse the repository at this point in the history
…. pulled out last remnants of promise from core sqlite-parser lib. refs #2
  • Loading branch information
nwronski committed Jul 5, 2015
1 parent 4ca4cf4 commit 6b1a118
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 884 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]

## [v0.9.1] - 2015-07-05
### Changed
- removed `private` flag in `package.json` ahead of first published release
- pulled out last remnants of `promise` from core `sqlite-parser` lib

## [v0.9.0] - 2015-07-05
### Changed
- `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.
Expand Down Expand Up @@ -289,8 +294,8 @@ fixed value format for direction key in PRIMARY KEY table contrainsts cleaned up
### Added
- First working version of sqlite-parser

[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.9.0...HEAD
[v0.9.0]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.0
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.9.1...HEAD
[v0.9.1]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.1
[v0.8.0]: https://github.com/codeschool/sqlite-parser/compare/v0.6.0...v0.8.0
[v0.6.0]: https://github.com/codeschool/sqlite-parser/compare/v0.3.1...v0.6.0
[v0.3.1]: https://github.com/codeschool/sqlite-parser/compare/6388118d601a89d011ecd6f5c215bbc9763444db...v0.3.1
Expand Down
9 changes: 4 additions & 5 deletions demo/sqlite-parser-demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -28185,7 +28185,7 @@ module.exports = (function (util) {
});
}
return err;
}
};

return Tracer;
})(parserUtils);
Expand Down Expand Up @@ -40099,8 +40099,7 @@ module.exports = {
* @author Nick Wronski <[email protected]>
*/
;(function (root) {
var Promise = require('promise/lib/es6-extensions'),
parser = require('./lib/parser'),
var parser = require('./lib/parser'),
Tracer = require('./lib/tracer');

function sqliteParser(source, callback) {
Expand All @@ -40115,10 +40114,10 @@ module.exports = {
}
}
sqliteParser['NAME'] = 'sqlite-parser';
sqliteParser['VERSION'] = '0.9.0';
sqliteParser['VERSION'] = '0.9.1';

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

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

0 comments on commit 6b1a118

Please sign in to comment.