Skip to content

Commit

Permalink
release: v1.6.1
Browse files Browse the repository at this point in the history
- fix: collection convert should handle tddl results as well (#132)
- upgrade: nyc@15 & sqlite3@5
  • Loading branch information
cyjake committed Jul 7, 2021
1 parent 4d015ab commit c4b7b55
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
},
Expand Down Expand Up @@ -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"
}
}

0 comments on commit c4b7b55

Please sign in to comment.