Skip to content

Commit 0481d42

Browse files
committed
v4 release
1 parent b5afd74 commit 0481d42

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ npm-login: &npm-login
1010
# Add the NPM_TOKEN name and the value is your npm token
1111
# Get your npm token via npm token create
1212
# https://docs.npmjs.com/cli/token
13+
# Token represents the npm gravity.bot user
1314
run:
1415
name: Create .npmrc
1516
command: |
@@ -105,4 +106,3 @@ workflows:
105106
only: master
106107
requires:
107108
- test
108-
context: npm-build

.version-bump.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
// since the file is imported using require()
88
// See command line options for additional available properties
99
module.exports = {
10-
strategy: 'cli'
10+
strategy: 'git-commit-subj'
1111
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ should also work.
6565

6666
```sh
6767
# v4 of sqlite is targted for nodejs 10 and on.
68-
$ npm install sqlite@4.0.0-beta.7 --save
68+
$ npm install sqlite --save
6969

7070
# If you need a legacy version for an older version of nodejs
7171
# install v3 instead, and look at the v3 branch readme for usage details

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlite",
3-
"version": "4.0.0-beta.7",
3+
"version": "4.0.0",
44
"description": "SQLite client for Node.js applications with SQL-based migrations API written in Typescript",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",
@@ -17,9 +17,9 @@
1717
"test:watch": "jest --watch",
1818
"test:coverage:watch": "jest --coverage --watch",
1919
"toc": "toc-md README.md README.md",
20-
"add-readme": "git add README.md",
2120
"lint-staged": "lint-staged",
2221
"prepare-publish": "npm run changelog:prepare && version-bump && npm run changelog:release && npm run changelog:stamp",
22+
"add-readme": "git add README.md",
2323
"version-bump": "version-bump",
2424
"changelog:help": "changelog-version",
2525
"changelog:verify": "changelog-version verify",
@@ -91,7 +91,8 @@
9191
"ts-node-dev": "1.0.0-pre.44",
9292
"typedoc": "^0.17.3",
9393
"typedoc-plugin-markdown": "^2.2.17",
94-
"typescript": "3.8.3"
94+
"typescript": "3.8.3",
95+
"version-bump-plugin-git": "^2.0.1"
9596
},
9697
"eslintConfig": {
9798
"parserOptions": {
@@ -116,8 +117,7 @@
116117
},
117118
"lint-staged": {
118119
"src/**/*.ts": [
119-
"prettier-standard",
120-
"git add"
120+
"prettier-standard"
121121
]
122122
},
123123
"pre-commit": [

0 commit comments

Comments
 (0)