diff --git a/CHANGELOG.md b/CHANGELOG.md index f17c7fd..6aca6f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [2.0.1](https://github.com/gregfenton/i18next-node-firestore-backend/compare/v2.0.0...v2.0.1) (2024-02-03) + + +### Features + +* code moved to TypeScript and proper .d.js now available ([4f967a4](https://github.com/gregfenton/i18next-node-firestore-backend/commit/4f967a4074228799f231b8a3e388cf9213d30ef3)) +* improved config error detection ([90fbd1a](https://github.com/gregfenton/i18next-node-firestore-backend/commit/90fbd1a2ef17aa5f4ffee9d01edf90f8c0cf815f)) + ## [2.0.0](https://github.com/gregfenton/i18next-node-firestore-backend/compare/v1.0.0...v2.0.0) (2024-02-02) diff --git a/examples/admin-cli/package.json b/examples/admin-cli/package.json index 6a4a93a..4ae1825 100644 --- a/examples/admin-cli/package.json +++ b/examples/admin-cli/package.json @@ -1,6 +1,6 @@ { "name": "admin-cli", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "type": "module", "description": "CLI-based NodeJS example of using i18next-node-firestore-backend and Firebase Admin SDK", diff --git a/examples/client-cli/package.json b/examples/client-cli/package.json index b5e31ae..4aad712 100644 --- a/examples/client-cli/package.json +++ b/examples/client-cli/package.json @@ -1,6 +1,6 @@ { "name": "client-cli", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "type": "module", "description": "CLI-based NodeJS example of using i18next-node-firestore-backend and Firebase Client SDK", diff --git a/examples/client-react/package.json b/examples/client-react/package.json index cc3811b..b4b0fb4 100644 --- a/examples/client-react/package.json +++ b/examples/client-react/package.json @@ -1,7 +1,7 @@ { "name": "client-react", "private": true, - "version": "2.0.0", + "version": "2.0.1", "description": "ReactJS/Vite example app using i18next-node-firestore-backend and Firebase Web Client SDK", "type": "module", "scripts": { diff --git a/package.json b/package.json index 159a5ad..f423912 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "i18next-node-firestore-backend", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "description": "Use i18next with Google Firestore as the backend for storing translation data", "type": "module",