Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Aug 8, 2020
1 parent eda392c commit 6f84cb9
Show file tree
Hide file tree
Showing 18 changed files with 125 additions and 19 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/env:** migrate Schema Type ([0951d08](https://github.com/azu/kvs/commit/0951d08405d42588454878a03c9082961ad0c363))
* **@kvs/indexeddb:** migrate Schema Type ([ec143e2](https://github.com/azu/kvs/commit/ec143e27d174271f4ce45f657e1ae644ef01591c))
* **@kvs/localstorage:** migrate to Schema type ([0c84640](https://github.com/azu/kvs/commit/0c84640c1c1d28955c60ca83d8a01bdce936d9ef))
* **@kvs/memorystorage:** migrate to Schema type ([84d75f4](https://github.com/azu/kvs/commit/84d75f4407b33119da6d4745adea611f2b80404e))
* **storage:** use Schema interface ([2560aae](https://github.com/azu/kvs/commit/2560aae28d642c8f2e8ee5920dc1cc15f7c8c3f6))





# 0.1.0 (2020-08-08)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.1.0"
"version": "0.2.0"
}
11 changes: 11 additions & 0 deletions packages/common-test-case/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/env:** migrate Schema Type ([0951d08](https://github.com/azu/kvs/commit/0951d08405d42588454878a03c9082961ad0c363))





# 0.1.0 (2020-08-08)


Expand Down
4 changes: 2 additions & 2 deletions packages/common-test-case/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/common-test-case",
"version": "0.1.0",
"version": "0.2.0",
"description": "Common Test Case for KVS",
"homepage": "https://github.com/azu/kvs/tree/master/packages/common-test-case/",
"bugs": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/types": "^0.1.0"
"@kvs/types": "^0.2.0"
},
"devDependencies": {
"@types/mocha": "^8.0.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/env/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/env:** migrate Schema Type ([0951d08](https://github.com/azu/kvs/commit/0951d08405d42588454878a03c9082961ad0c363))





# 0.1.0 (2020-08-08)


Expand Down
6 changes: 3 additions & 3 deletions packages/env/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/env",
"version": "0.1.0",
"version": "0.2.0",
"description": "Universal Storage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -46,8 +46,8 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/indexeddb": "^0.1.0",
"@kvs/node-localstorage": "^0.1.0"
"@kvs/indexeddb": "^0.2.0",
"@kvs/node-localstorage": "^0.2.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
Expand Down
12 changes: 12 additions & 0 deletions packages/indexeddb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/env:** migrate Schema Type ([0951d08](https://github.com/azu/kvs/commit/0951d08405d42588454878a03c9082961ad0c363))
* **@kvs/indexeddb:** migrate Schema Type ([ec143e2](https://github.com/azu/kvs/commit/ec143e27d174271f4ce45f657e1ae644ef01591c))





# 0.1.0 (2020-08-08)


Expand Down
6 changes: 3 additions & 3 deletions packages/indexeddb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/indexeddb",
"version": "0.1.0",
"version": "0.2.0",
"description": "IndexedDB for KVS",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,11 +45,11 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/types": "^0.1.0"
"@kvs/types": "^0.2.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^0.1.0",
"@kvs/common-test-case": "^0.2.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"karma": "^5.1.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/localstorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/localstorage:** migrate to Schema type ([0c84640](https://github.com/azu/kvs/commit/0c84640c1c1d28955c60ca83d8a01bdce936d9ef))





# 0.1.0 (2020-08-08)


Expand Down
4 changes: 2 additions & 2 deletions packages/localstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/localstorage",
"version": "0.1.0",
"version": "0.2.0",
"description": "localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,7 +45,7 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/storage": "^0.1.0"
"@kvs/storage": "^0.2.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
Expand Down
11 changes: 11 additions & 0 deletions packages/memorystorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/memorystorage:** migrate to Schema type ([84d75f4](https://github.com/azu/kvs/commit/84d75f4407b33119da6d4745adea611f2b80404e))





# 0.1.0 (2020-08-08)


Expand Down
4 changes: 2 additions & 2 deletions packages/memorystorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/memorystorage",
"version": "0.1.0",
"version": "0.2.0",
"description": "Node.js localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -49,7 +49,7 @@
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^0.1.0",
"@kvs/common-test-case": "^0.2.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"lerna": "^3.22.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/node-localstorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/env:** migrate Schema Type ([0951d08](https://github.com/azu/kvs/commit/0951d08405d42588454878a03c9082961ad0c363))





# 0.1.0 (2020-08-08)


Expand Down
6 changes: 3 additions & 3 deletions packages/node-localstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/node-localstorage",
"version": "0.1.0",
"version": "0.2.0",
"description": "Node.js localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,14 +45,14 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/storage": "^0.1.0",
"@kvs/storage": "^0.2.0",
"app-root-path": "^3.0.0",
"mkdirp": "^1.0.4",
"node-localstorage": "^2.1.6"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^0.1.0",
"@kvs/common-test-case": "^0.2.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"lerna": "^3.22.1",
Expand Down
13 changes: 13 additions & 0 deletions packages/storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **@kvs/indexeddb:** migrate Schema Type ([ec143e2](https://github.com/azu/kvs/commit/ec143e27d174271f4ce45f657e1ae644ef01591c))
* **@kvs/localstorage:** migrate to Schema type ([0c84640](https://github.com/azu/kvs/commit/0c84640c1c1d28955c60ca83d8a01bdce936d9ef))
* **storage:** use Schema interface ([2560aae](https://github.com/azu/kvs/commit/2560aae28d642c8f2e8ee5920dc1cc15f7c8c3f6))





# 0.1.0 (2020-08-08)


Expand Down
4 changes: 2 additions & 2 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/storage",
"version": "0.1.0",
"version": "0.2.0",
"description": "Storage(localStorage, sessionStorage) helper for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,7 +45,7 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/types": "^0.1.0"
"@kvs/types": "^0.2.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
Expand Down
11 changes: 11 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/azu/kvs/compare/v0.1.0...v0.2.0) (2020-08-08)


### Features

* **storage:** use Schema interface ([2560aae](https://github.com/azu/kvs/commit/2560aae28d642c8f2e8ee5920dc1cc15f7c8c3f6))





# 0.1.0 (2020-08-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/types",
"version": "0.1.0",
"version": "0.2.0",
"description": "A type definition for KVS.",
"keywords": [
"types",
Expand Down

0 comments on commit 6f84cb9

Please sign in to comment.