Browse Source

chore(release): v1.0.1

master v1.0.1
Kiko Beats 3 years ago
parent
commit
7607a91270
No known key found for this signature in database GPG Key ID: 8FA93B22CCF04B96
  1. 16
      CHANGELOG.md
  2. 2
      lerna.json
  3. 8
      packages/keyv-mongo/CHANGELOG.md
  4. 2
      packages/keyv-mongo/package.json
  5. 8
      packages/keyv-mysql/CHANGELOG.md
  6. 4
      packages/keyv-mysql/package.json
  7. 8
      packages/keyv-postgres/CHANGELOG.md
  8. 4
      packages/keyv-postgres/package.json
  9. 8
      packages/keyv-redis/CHANGELOG.md
  10. 2
      packages/keyv-redis/package.json
  11. 8
      packages/keyv-sql/CHANGELOG.md
  12. 2
      packages/keyv-sql/package.json
  13. 8
      packages/keyv-sqlite/CHANGELOG.md
  14. 4
      packages/keyv-sqlite/package.json
  15. 8
      packages/keyv-test-suite/CHANGELOG.md
  16. 2
      packages/keyv-test-suite/package.json
  17. 8
      packages/keyv/CHANGELOG.md
  18. 2
      packages/keyv/package.json

16
CHANGELOG.md

@ -1,3 +1,16 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/monorepo
# [](https://github.com/microlinkhq/keyv/compare/v1.0.0...v) (2021-07-16)
@ -104,6 +117,3 @@
* since exports are now different
Signed-off-by: Jytesh <44925963+Jytesh@users.noreply.github.com>

2
lerna.json

@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "1.0.0",
"version": "1.0.1",
"command": {
"bootstrap": {
"npmClientArgs": [

8
packages/keyv-mongo/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/mongo
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/mongo

2
packages/keyv-mongo/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/mongo",
"description": "MongoDB storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",

8
packages/keyv-mysql/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/mysql
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/mysql

4
packages/keyv-mysql/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/mysql",
"description": "MySQL/MariaDB storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",
@ -31,7 +31,7 @@
"value"
],
"dependencies": {
"@keyvhq/sql": "^1.0.0",
"@keyvhq/sql": "^1.0.1",
"mysql2": "2.2.5"
},
"devDependencies": {

8
packages/keyv-postgres/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/postgres
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/postgres

4
packages/keyv-postgres/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/postgres",
"description": "PostgreSQL storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",
@ -31,7 +31,7 @@
"value"
],
"dependencies": {
"@keyvhq/sql": "^1.0.0",
"@keyvhq/sql": "^1.0.1",
"pg": "8.6.0"
},
"devDependencies": {

8
packages/keyv-redis/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/redis
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/redis

2
packages/keyv-redis/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/redis",
"description": "Redis storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",

8
packages/keyv-sql/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/sql
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/sql

2
packages/keyv-sql/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/sql",
"description": "Parent class for SQL based Keyv storage adapters",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",

8
packages/keyv-sqlite/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/sqlite
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)
**Note:** Version bump only for package @keyvhq/sqlite

4
packages/keyv-sqlite/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/sqlite",
"description": "SQLite storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",
@ -30,7 +30,7 @@
"value"
],
"dependencies": {
"@keyvhq/sql": "^1.0.0",
"@keyvhq/sql": "^1.0.1",
"pify": "5.0.0",
"sqlite3": "^5.0.2"
},

8
packages/keyv-test-suite/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/test-suite
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)

2
packages/keyv-test-suite/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/test-suite",
"description": "Test suite for Keyv API compliancy",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",

8
packages/keyv/CHANGELOG.md

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.1](https://github.com/microlinkhq/keyv/compare/v1.0.0...v1.0.1) (2021-07-16)
**Note:** Version bump only for package @keyvhq/core
## [0.2.4](https://github.com/microlinkhq/keyv/compare/v0.2.0...v0.2.4) (2021-07-01)

2
packages/keyv/package.json

@ -2,7 +2,7 @@
"name": "@keyvhq/core",
"description": "Simple key-value storage with support for multiple backends",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "1.0.0",
"version": "1.0.1",
"main": "src/index.js",
"author": {
"email": "hello@microlink.io",

Loading…
Cancel
Save