diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..249c56b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.0] - 2017-10-28 +### Added +- Foreign keys support + +### Changed +- createTable don't automatically update the schema, use createOrUpdateTable if + you want the old behavior. + +## [1.0.0] - 2017-06-26 diff --git a/package.json b/package.json index 424df5c..9a08199 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlutil", - "version": "1.0.0", + "version": "2.0.0", "description": "Wrapper around sqlite for structured queries", "homepage": "https://github.com/erikman/sqlutil", "main": "dist/index.js",