diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c18d4c0..087a59e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - name: Install pnpm run: npm install -g pnpm@^8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 28f390b..8943106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [11.0.4](https://github.com/ankurk91/vue-flatpickr-component/compare/11.0.3...11.0.4) + +* Fix issue, #283 + ## [11.0.3](https://github.com/ankurk91/vue-flatpickr-component/compare/11.0.2...11.0.3) * Fix SSR issue, #277 diff --git a/README.md b/README.md index 5b24cd5..a24220b 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ The component accepts these props: ## Run examples on your localhost * Clone this repo -* Make sure you have node-js `>=18.16` and [pnpm](https://pnpm.io/) `>=8.x` pre-installed +* Make sure you have node-js `>=20.11` and [pnpm](https://pnpm.io/) `>=8.x` pre-installed * Install dependencies `pnpm install` * Run webpack dev server `npm start` * This should open the demo page in your default web browser diff --git a/package.json b/package.json index 38eca0d..e017588 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-flatpickr-component", - "version": "11.0.3", + "version": "11.0.4", "description": "Vue.js component for Flatpickr date-time picker", "main": "dist/index.umd.js", "module": "dist/esm/index.js",