Skip to content

Commit

Permalink
chore(main): release iso-kv 3.0.3 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias authored May 16, 2024
1 parent c6e4813 commit 71562ae
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"packages/iso-did": "1.6.0",
"packages/iso-signatures": "0.3.2",
"packages/iso-web": "1.0.5",
"packages/iso-kv": "3.0.2",
"packages/iso-kv": "3.0.3",
"packages/iso-websocket": "0.2.0",
"packages/configs": "0.1.7"
}
7 changes: 7 additions & 0 deletions packages/iso-kv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [3.0.3](https://github.com/hugomrdias/iso-repo/compare/iso-kv-v3.0.2...iso-kv-v3.0.3) (2024-05-16)


### Bug Fixes

* update readme and descriptions ([5c9c2cc](https://github.com/hugomrdias/iso-repo/commit/5c9c2cca303efa513be94a45ff10e5e5b9ea4a06))

## [3.0.2](https://github.com/hugomrdias/iso-repo/compare/iso-kv-v3.0.1...iso-kv-v3.0.2) (2024-03-25)


Expand Down
27 changes: 21 additions & 6 deletions packages/iso-kv/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iso-kv",
"type": "module",
"version": "3.0.2",
"version": "3.0.3",
"description": "Isomorphic key-value storage with support for multiple backends",
"author": "Hugo Dias <[email protected]> (hugodias.me)",
"license": "MIT",
Expand All @@ -13,7 +13,12 @@
"bugs": {
"url": "https://github.com/hugomrdias/iso-repo/issues"
},
"keywords": ["kv", "key-value", "storage", "isomorphic"],
"keywords": [
"kv",
"key-value",
"storage",
"isomorphic"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
Expand All @@ -28,10 +33,16 @@
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"drivers/*": ["dist/src/drivers/*"]
"drivers/*": [
"dist/src/drivers/*"
]
}
},
"files": ["src", "dist/src/**/*.d.ts", "dist/src/**/*.d.ts.map"],
"files": [
"src",
"dist/src/**/*.d.ts",
"dist/src/**/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"test": "pnpm run test:node && pnpm run test:browser",
Expand All @@ -57,7 +68,11 @@
"provenance": true
},
"depcheck": {
"specials": ["bin"],
"ignores": ["@types/*"]
"specials": [
"bin"
],
"ignores": [
"@types/*"
]
}
}

0 comments on commit 71562ae

Please sign in to comment.