From b44a15b408c724cc0d0403b627bbe7405f1514c7 Mon Sep 17 00:00:00 2001 From: ankurk91 Date: Tue, 29 Dec 2020 11:12:59 +0530 Subject: [PATCH] Housekeeping --- .github/CONTRIBUTING.md | 23 ----------------------- .github/ISSUE_TEMPLATE.md | 2 +- .github/workflows/build.yml | 2 +- CHANGELOG.md | 3 +++ README.md | 4 ++-- 5 files changed, 7 insertions(+), 27 deletions(-) delete mode 100644 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index f3a7cfa..0000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,23 +0,0 @@ -# Contributing - -### Issue reporting -* If the issue is related to flatPickr then report that issue on [flatpickr](https://github.com/flatpickr/flatpickr/issues) repo instead - - Issues those are related to flatPickr may be closed without any reason -* Follow ISSUE_TEMPLATE - - -### Pull requests guidelines -* Always create a separate branch from `master` branch for your commits. -* One concern one PR. -* It's OK to have multiple small commits as you work on the PR - we will let GitHub automatically squash it before merging. - - -### Development setup -* Install [node-js](http://nodejs.org/) `10.13.0>=` and [yarn](https://yarnpkg.com/en/docs/install) v1.x -* Clone the repo -* Create a separate branch `git checkout -b your-branch-name` -* Install dependencies : `yarn install` -* Make changes in ``src`` folder -* Write/update test case for the feature/fix you made -* You can check if everything is working fine by running `yarn test` - diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 3f02abe..1d000bd 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -8,7 +8,7 @@ **Tell about your platform** * flatPickr version : 4.x.x * Vue.js version : 3.x -* Browser name and version : Chrome|Firefox|Safari x.x.x +* Browser name and version : Chrome|Firefox|Edge x.x.x * This package version : x.x.x **Current behavior** diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd5e186..508b7e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index f72f8ce..069b386 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [9.0.1](https://github.com/ankurk91/vue-flatpickr-component/compare/9.0.0...9.0.1) +* Fix [#209](https://github.com/ankurk91/vue-flatpickr-component/issues/209) + ## [9.0.0](https://github.com/ankurk91/vue-flatpickr-component/compare/8.1.6...9.0.0) * Drop support for Vue v2.x and add support for Vue v3.x * Drop IE 11 support diff --git a/README.md b/README.md index d635cf1..aa2f1f6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![codecov](https://codecov.io/gh/ankurk91/vue-flatpickr-component/branch/master/graph/badge.svg)](https://codecov.io/gh/ankurk91/vue-flatpickr-component) [![license](https://badgen.net/github/license/ankurk91/vue-flatpickr-component)](https://yarnpkg.com/en/package/vue-flatpickr-component) -Vue.js component for [Flatpickr](https://flatpickr.js.org/) date-time picker +Vue.js component for [Flatpickr](https://flatpickr.js.org/) date-time picker. ## [Demo](https://ankurk91.github.io/vue-flatpickr-component/) or [JSFiddle](https://jsfiddle.net/ankurk91/63kzdwLx/) @@ -179,7 +179,7 @@ yourAppInstance.component('flat-pickr', VueFlatpickr); ## Run examples on your localhost * Clone this repo -* You should have node-js `10.13.0>=` and yarn `>=1.x` pre-installed +* You should have node-js `12.14.0>=` and yarn `>=1.x` pre-installed * Install dependencies `yarn install` * Run webpack dev server `yarn start` * This should open the demo page at `http://localhost:9000` in your default web browser