Skip to content

Commit

Permalink
chore(release): v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Sep 29, 2023
1 parent 5cc43fe commit 3ca2c5c
Show file tree
Hide file tree
Showing 22 changed files with 61 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyhq/compare/v2.0.3...v2.1.0) (2023-09-29)

### Features

* memoize: add typescript definition ([#195](https://github.com/microlinkhq/keyhq/issues/195)) ([ea05353](https://github.com/microlinkhq/keyhq/commit/ea05353ce1b724a003ce36745d6d91b41f10ca7a))

## [2.0.3](https://github.com/microlinkhq/keyhq/compare/v2.0.2...v2.0.3) (2023-06-20)

**Note:** Version bump only for package @keyvhq/monorepo
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "2.0.3",
"version": "2.1.0",
"command": {
"bootstrap": {
"npmClientArgs": [
Expand Down
4 changes: 4 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyvhq/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/core

# [2.0.0](https://github.com/microlinkhq/keyvhq/compare/v1.6.28...v2.0.0) (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/core",
"description": "Simple key-value storage with support for multiple backends",
"homepage": "https://keyv.js.org",
"version": "2.0.0",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/file/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyvhq/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/file

# [2.0.0](https://github.com/microlinkhq/keyvhq/compare/v1.6.28...v2.0.0) (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/file",
"description": "A file storage adapter for Keyv",
"homepage": "https://keyv.js.org",
"version": "2.0.0",
"version": "2.1.0",
"types": "src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
6 changes: 6 additions & 0 deletions packages/memoize/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

### Features

* memoize: add typescript definition ([#195](https://github.com/microlinkhq/keyv/issues/195)) ([ea05353](https://github.com/microlinkhq/keyv/commit/ea05353ce1b724a003ce36745d6d91b41f10ca7a))

## [2.0.3](https://github.com/microlinkhq/keyv/compare/v2.0.2...v2.0.3) (2023-06-20)

**Note:** Version bump only for package @keyvhq/memoize
Expand Down
4 changes: 2 additions & 2 deletions packages/memoize/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/memoize",
"description": "Memoize any function using Keyv as storage backend.",
"homepage": "https://keyv.js.org",
"version": "2.0.3",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand All @@ -29,7 +29,7 @@
"value"
],
"dependencies": {
"@keyvhq/core": "^2.0.0",
"@keyvhq/core": "^2.1.0",
"mimic-fn": "~3.0.0"
},
"devDependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/mongo

# [2.0.0](https://github.com/microlinkhq/keyv/compare/v1.6.28...v2.0.0) (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/mongo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/mongo",
"description": "MongoDB storage adapter for Keyv",
"homepage": "https://keyv.js.org",
"version": "2.0.0",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/multi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/multi

## [2.0.3](https://github.com/microlinkhq/keyv/compare/v2.0.2...v2.0.3) (2023-06-20)

**Note:** Version bump only for package @keyvhq/multi
Expand Down
4 changes: 2 additions & 2 deletions packages/multi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/multi",
"description": "Layered cache with any backend",
"homepage": "https://keyv.js.org",
"version": "2.0.3",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand All @@ -29,7 +29,7 @@
"value"
],
"dependencies": {
"@keyvhq/core": "^2.0.0"
"@keyvhq/core": "^2.1.0"
},
"devDependencies": {
"@keyvhq/compress": "latest",
Expand Down
4 changes: 4 additions & 0 deletions packages/mysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/mysql

## [2.0.3](https://github.com/microlinkhq/keyv/compare/v2.0.2...v2.0.3) (2023-06-20)

**Note:** Version bump only for package @keyvhq/mysql
Expand Down
2 changes: 1 addition & 1 deletion packages/mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/mysql",
"description": "MySQL/MariaDB storage adapter for Keyv",
"homepage": "https://keyv.js.org",
"version": "2.0.3",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/postgres

## [2.0.2](https://github.com/microlinkhq/keyv/compare/v2.0.1...v2.0.2) (2023-05-16)

**Note:** Version bump only for package @keyvhq/postgres
Expand Down
2 changes: 1 addition & 1 deletion packages/postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/postgres",
"description": "PostgreSQL storage adapter for Keyv",
"homepage": "https://keyv.js.org",
"version": "2.0.2",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/redis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/redis

# [2.0.0](https://github.com/microlinkhq/keyv/compare/v1.6.28...v2.0.0) (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/redis",
"description": "Redis storage adapter for Keyv",
"homepage": "https://github.com/microlinkhq/keyv",
"version": "2.0.0",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyv/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/sqlite

# [2.0.0](https://github.com/microlinkhq/keyv/compare/v1.6.28...v2.0.0) (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/sqlite",
"description": "SQLite storage adapter for Keyv",
"homepage": "https://keyv.js.org",
"version": "2.0.0",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/stats/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/microlinkhq/keyvhq/compare/v2.0.3...v2.1.0) (2023-09-29)

**Note:** Version bump only for package @keyvhq/stats

## [2.0.3](https://github.com/microlinkhq/keyvhq/compare/v2.0.2...v2.0.3) (2023-06-20)

**Note:** Version bump only for package @keyvhq/stats
Expand Down
2 changes: 1 addition & 1 deletion packages/stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keyvhq/stats",
"description": "Collects metrics for a Keyv instance over time.",
"homepage": "https://keyv.js.org",
"version": "2.0.3",
"version": "2.1.0",
"types": "./src/index.d.ts",
"main": "src/index.js",
"author": {
Expand Down

0 comments on commit 3ca2c5c

Please sign in to comment.