diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b1049f8..ea792109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [2.0.0-next.6](https://github.com/andipaetzold/mdb-reader/compare/v2.0.0-next.5...v2.0.0-next.6) (2021-11-16) + + +### Bug Fixes + +* handle tables with over 256 cols (incl. deleted) ([#111](https://github.com/andipaetzold/mdb-reader/issues/111)) ([e5f0d19](https://github.com/andipaetzold/mdb-reader/commit/e5f0d1911df6917a86fe0daa5047a8284ba9fe4a)) +* incorrect boolean values in tables with inserted columns ([#124](https://github.com/andipaetzold/mdb-reader/issues/124)) ([0d4b78c](https://github.com/andipaetzold/mdb-reader/commit/0d4b78cc14b26ea0fcfbbe6768dae5ed3a418936)) +* mixed endianness of guids ([#118](https://github.com/andipaetzold/mdb-reader/issues/118)) ([ac7790c](https://github.com/andipaetzold/mdb-reader/commit/ac7790c3888156f68a8503b94f647ad447d4fef2)) +* round milliseconds in datetime parser ([#123](https://github.com/andipaetzold/mdb-reader/issues/123)) ([b1b4379](https://github.com/andipaetzold/mdb-reader/commit/b1b4379b830041c6a725b67d165d0811e98d8a67)) + # [2.0.0-next.5](https://github.com/andipaetzold/mdb-reader/compare/v2.0.0-next.4...v2.0.0-next.5) (2021-10-16) @@ -155,4 +165,4 @@ ### Bug Fixes * set rollup output.exports to default for cjs ([5d4d311](https://github.com/andipaetzold/mdb-reader/commit/5d4d3119bcb7fbab656e38cca0bf55f367c30821)) -* use types prop in package.json for type defs ([7616862](https://github.com/andipaetzold/mdb-reader/commit/76168629d01b167c4b13cfb81a2a11790940bbd3)) \ No newline at end of file +* use types prop in package.json for type defs ([7616862](https://github.com/andipaetzold/mdb-reader/commit/76168629d01b167c4b13cfb81a2a11790940bbd3)) diff --git a/package-lock.json b/package-lock.json index 86ee88f5..34d51c95 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mdb-reader", - "version": "2.0.0-next.5", + "version": "2.0.0-next.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cc191773..d16b7f09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mdb-reader", - "version": "2.0.0-next.5", + "version": "2.0.0-next.6", "description": "JavaScript library to read data from Access databases", "main": "lib/cjs/index.js", "module": "lib/esm/index.js",