From c4b7b554ecb400b90dd862a1c4f68ae7b3518ec0 Mon Sep 17 00:00:00 2001 From: Chen Yangjian <252317+cyjake@users.noreply.github.com> Date: Wed, 7 Jul 2021 13:54:46 +0800 Subject: [PATCH] release: v1.6.1 - fix: collection convert should handle tddl results as well (#132) - upgrade: nyc@15 & sqlite3@5 --- History.md | 5 +++++ package.json | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/History.md b/History.md index 55d1e8aa..73fca97d 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,8 @@ +1.6.1 / 2021-07-07 +================== + + * fix: collection convert should handle tddl results as well (#132) + 1.6.0 / 2021-07-06 ================== diff --git a/package.json b/package.json index fe9bc58d..a3aa0adf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "leoric", - "version": "1.6.0", + "version": "1.6.1", "description": "JavaScript Object-relational mapping alchemy", "main": "index.js", "types": "types/index.d.ts", @@ -19,7 +19,7 @@ "test:mysql2": "./test/start.sh test/integration/mysql2.test.js", "test:postgres": "./test/start.sh test/integration/postgres.test.js", "test:sqlite": "./test/start.sh test/integration/sqlite.test.js", - "coveralls": "./test/start.sh && nyc report --reporter=text-lcov | coveralls", + "coveralls": "nyc ./test/start.sh && nyc report --reporter=text-lcov | coveralls", "lint": "eslint ./", "lint:fix": "eslint . --fix" }, @@ -61,9 +61,9 @@ "mocha": "^8.2.1", "mysql": "^2.17.1", "mysql2": "^1.7.0", - "nyc": "^5.6.0", + "nyc": "^15.1.0", "pg": "^8.5.1", "sinon": "^10.0.0", - "sqlite3": "^4.2.0" + "sqlite3": "^5.0.2" } }