Skip to content

Commit

Permalink
chore: release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Apr 28, 2020
1 parent 5201248 commit 8ca5456
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -93,6 +93,9 @@ The file will be overwritten if it exists. The 2nd options argument can be used
### __WORK IN PROGRESS__
-->

### 0.5.1 (2020-04-28)
Fix: The main export no longer exports `JsonlDB` as `DB`.

### 0.5.0 (2020-04-27)
Added an optional reviver function to transform non-primitive objects while loading the DB

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@alcalzone/jsonl-db",
"version": "0.5.0",
"version": "0.5.1",
"description": "Simple JSONL-based key-value store",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"homepage": "https://github.com/AlCalzone/jsonl-db#readme",
"devDependencies": {
"@alcalzone/release-script": "^1.2.0",
"@alcalzone/release-script": "^1.3.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
@@ -1 +1 @@
export { JsonlDB as DB } from "./lib/db";
export { JsonlDB } from "./lib/db";

0 comments on commit 8ca5456

Please sign in to comment.