Skip to content

Commit ef660de

Browse files
committed
Merge branch 'master' of ssh://github.com/kriasoft/node-sqlite
2 parents 3a97950 + f16f8b3 commit ef660de

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88
- Typescript: Add cached option to open function [#81](https://github.com/kriasoft/node-sqlite/pull/81)
99
- Typescript: Merged declarations for methods that accepts both string and SQLStatements in Database [#80](https://github.com/kriasoft/node-sqlite/pull/80)
1010
- Misc: Fix small typo [#84](https://github.com/kriasoft/node-sqlite/pull/84)
11+
- Apply `npm audit` fixes (`mocha` updated to latest)
1112

1213
### [v3.0.0]
1314
> 2018-08-22

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "sqlite",
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "SQLite client for Node.js applications with SQL-based migrations API",
66
"repository": "kriasoft/node-sqlite",
77
"author": "Kriasoft <[email protected]> (https://www.kriasoft.com)",
@@ -64,7 +64,7 @@
6464
"eslint": "^3.14.1",
6565
"eslint-config-airbnb-base": "^11.0.1",
6666
"eslint-plugin-import": "^2.2.0",
67-
"mocha": "^3.2.0",
67+
"mocha": "^5.2.0",
6868
"rollup": "^0.41.4",
6969
"rollup-plugin-babel": "^2.7.1"
7070
},

src/Database.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class Database {
170170
throw new Error(`No migration files found in '${location}'.`);
171171
}
172172

173-
// Ge the list of migrations, for example:
173+
// Get the list of migrations, for example:
174174
// { id: 1, name: 'initial', filename: '001-initial.sql', up: ..., down: ... }
175175
// { id: 2, name: 'feature', fielname: '002-feature.sql', up: ..., down: ... }
176176
await Promise.all(migrations.map(migration => new this.Promise((resolve, reject) => {

0 commit comments

Comments
 (0)