@philiprehberger/cache-kit 0.3.5 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @philiprehberger/cache-kit
2
2
 
3
- [![CI](https://github.com/philiprehberger/cache-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/cache-kit/actions/workflows/ci.yml)
3
+ [![CI](https://github.com/philiprehberger/ts-cache-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/ts-cache-kit/actions/workflows/ci.yml)
4
4
  [![npm version](https://img.shields.io/npm/v/@philiprehberger/cache-kit.svg)](https://www.npmjs.com/package/@philiprehberger/cache-kit)
5
- [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/cache-kit)](https://github.com/philiprehberger/cache-kit/commits/main)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/ts-cache-kit)](https://github.com/philiprehberger/ts-cache-kit/commits/main)
6
6
 
7
7
  In-memory LRU cache with TTL, stale-while-revalidate, and tag invalidation
8
8
 
@@ -160,11 +160,11 @@ npm test
160
160
 
161
161
  If you find this project useful:
162
162
 
163
- ⭐ [Star the repo](https://github.com/philiprehberger/cache-kit)
163
+ ⭐ [Star the repo](https://github.com/philiprehberger/ts-cache-kit)
164
164
 
165
- 🐛 [Report issues](https://github.com/philiprehberger/cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
165
+ 🐛 [Report issues](https://github.com/philiprehberger/ts-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
166
166
 
167
- 💡 [Suggest features](https://github.com/philiprehberger/cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
167
+ 💡 [Suggest features](https://github.com/philiprehberger/ts-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
168
168
 
169
169
  ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
170
170
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@philiprehberger/cache-kit",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "In-memory LRU cache with TTL, stale-while-revalidate, and tag invalidation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",