Skip to content

Commit

Permalink
v4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
theogravity committed Apr 4, 2020
1 parent b5afd74 commit 0481d42
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ npm-login: &npm-login
# Add the NPM_TOKEN name and the value is your npm token
# Get your npm token via npm token create
# https://docs.npmjs.com/cli/token
# Token represents the npm gravity.bot user
run:
name: Create .npmrc
command: |
Expand Down Expand Up @@ -105,4 +106,3 @@ workflows:
only: master
requires:
- test
context: npm-build
2 changes: 1 addition & 1 deletion .version-bump.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
// since the file is imported using require()
// See command line options for additional available properties
module.exports = {
strategy: 'cli'
strategy: 'git-commit-subj'
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ should also work.

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

# If you need a legacy version for an older version of nodejs
# install v3 instead, and look at the v3 branch readme for usage details
Expand Down
10 changes: 10 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sqlite",
"version": "4.0.0-beta.7",
"version": "4.0.0",
"description": "SQLite client for Node.js applications with SQL-based migrations API written in Typescript",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -17,9 +17,9 @@
"test:watch": "jest --watch",
"test:coverage:watch": "jest --coverage --watch",
"toc": "toc-md README.md README.md",
"add-readme": "git add README.md",
"lint-staged": "lint-staged",
"prepare-publish": "npm run changelog:prepare && version-bump && npm run changelog:release && npm run changelog:stamp",
"add-readme": "git add README.md",
"version-bump": "version-bump",
"changelog:help": "changelog-version",
"changelog:verify": "changelog-version verify",
Expand Down Expand Up @@ -91,7 +91,8 @@
"ts-node-dev": "1.0.0-pre.44",
"typedoc": "^0.17.3",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "3.8.3"
"typescript": "3.8.3",
"version-bump-plugin-git": "^2.0.1"
},
"eslintConfig": {
"parserOptions": {
Expand All @@ -116,8 +117,7 @@
},
"lint-staged": {
"src/**/*.ts": [
"prettier-standard",
"git add"
"prettier-standard"
]
},
"pre-commit": [
Expand Down

0 comments on commit 0481d42

Please sign in to comment.