Skip to content

Commit 9d6f3c1

Browse files
committed
2.8.0
1 parent 7631df0 commit 9d6f3c1

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
### [v2.8.0]
6+
> 2017-05-21
7+
8+
- Match only “down” as separator in migration files ([#32](https://github.com/kriasoft/node-sqlite/pull/32))
9+
510
### [v2.7.0]
611
> 2017-05-01
712

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2016 Kriasoft, LLC. All rights reserved.
3+
Copyright (c) 2015-present Kriasoft. All rights reserved.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ latest migration over again each time when Node.js app launches.
129129

130130
The `open` method resolves to the db instance which can be used in order to reference multiple open databases.
131131

132-
ES6
133-
```
132+
#### ES6
133+
134+
```js
134135
import sqlite from 'sqlite';
135136

136137
Promise.all([
@@ -141,9 +142,9 @@ Promise.all([
141142
});
142143
```
143144

144-
ES7+ Async/Await
145+
#### ES7+ Async/Await
145146

146-
```
147+
```js
147148
import sqlite from 'sqlite';
148149

149150
async function main() {
@@ -164,6 +165,7 @@ main();
164165

165166
### Related Projects
166167

168+
* [Node.js API Starter](https://github.com/kriasoft/nodejs-api-starter) — Data API server boilerplate (Node.js, PostgreSQL, Redis, Passport.js and GraphQL)
167169
* [React Starter Kit](https://github.com/kriasoft/react-starter-kit) — Isomorphic web app boilerplate (Node.js/Express, React.js, GraphQL)
168170
* [ASP.NET Core Starter Kit](https://github.com/kriasoft/react-starter-kit) — Single-page app boilerplate (ASP.NET Core, React.js, Web API)
169171
* [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit) — JavaScript library boilerplate (ES2015, Babel, Rollup)
@@ -178,7 +180,7 @@ main();
178180

179181
### License
180182

181-
The MIT License © 2015-2016 Kriasoft, LLC. All rights reserved.
183+
The MIT License © 2015-present Kriasoft. All rights reserved.
182184

183185
---
184-
Made with ♥ by Konstantin Tarkus ([@koistya](https://twitter.com/koistya)) and [contributors](https://github.com/kriasoft/node-sqlite/graphs/contributors)
186+
Made with ♥ by [Konstantin Tarkus](https://github.com/koistya) ([@koistya](https://twitter.com/koistya)), [Theo Gravity](https://github.com/theogravity) and [contributors](https://github.com/kriasoft/node-sqlite/graphs/contributors)

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"private": true,
33
"name": "sqlite",
4-
"version": "2.7.0",
4+
"version": "2.8.0",
55
"description": "SQLite client for Node.js applications with SQL-based migrations API",
66
"repository": "kriasoft/node-sqlite",
7-
"author": "Kriasoft <[email protected]> (http://www.kriasoft.com)",
7+
"author": "Kriasoft <[email protected]> (https://www.kriasoft.com)",
88
"contributors": [
9-
"Konstantin Tarkus <[email protected]> (https://twitter.com/koistya)"
9+
"Konstantin Tarkus <[email protected]> (https://twitter.com/koistya)",
10+
"Theo Gravity <[email protected]> (https://www.npmjs.com/~theo.gravity)"
1011
],
1112
"keywords": [
1213
"sqlite",

0 commit comments

Comments
 (0)