diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a43eff..b935e37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,25 @@ # Changelog -## [2.1.1](https://github.com/andyrichardson/fielder/tree/2.1.1) (2021-11-02) +## [v2.2.0](https://github.com/andyrichardson/fielder/tree/v2.2.0) (2022-09-12) -[Full Changelog](https://github.com/andyrichardson/fielder/compare/v2.1.0...2.1.1) +[Full Changelog](https://github.com/andyrichardson/fielder/compare/v2.1.1...v2.2.0) + +**Additions:** + +- Add support for persisting state [\#12](https://github.com/andyrichardson/fielder/issues/12) + +**Merged pull requests:** + +- Update docs dependencies [\#336](https://github.com/andyrichardson/fielder/pull/336) ([andyrichardson](https://github.com/andyrichardson)) +- Add "fromState" to docs [\#335](https://github.com/andyrichardson/fielder/pull/335) ([andyrichardson](https://github.com/andyrichardson)) +- Fix formatting [\#334](https://github.com/andyrichardson/fielder/pull/334) ([andyrichardson](https://github.com/andyrichardson)) +- Move to Github Actions [\#333](https://github.com/andyrichardson/fielder/pull/333) ([andyrichardson](https://github.com/andyrichardson)) +- Fix e2e tests [\#321](https://github.com/andyrichardson/fielder/pull/321) ([andyrichardson](https://github.com/andyrichardson)) +- Add value restoration \(optional\) [\#320](https://github.com/andyrichardson/fielder/pull/320) ([andyrichardson](https://github.com/andyrichardson)) + +## [v2.1.1](https://github.com/andyrichardson/fielder/tree/v2.1.1) (2021-11-02) + +[Full Changelog](https://github.com/andyrichardson/fielder/compare/v2.1.0...v2.1.1) **Closed issues:** diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 26cc833..252db00 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ npm run changelog -- --future-release [release version] --token [your github oau ### 3. Push/merge new version to master ``` -git add package.json CHANGELOG.md +git add CHANGELOG.md git commit -m "Version v0.0.0" git push origin master ``` diff --git a/package.json b/package.json index 695f9fa..9eda434 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fielder", - "version": "2.1.1", + "version": "0.0.0", "description": "A field-first form library for React and React Native", "main": "dist/index.js", "module": "dist/index.es.js", @@ -33,7 +33,7 @@ "build:preact": "rm -rf preact/dist && PREACT=true rollup -c rollup.config.js", "check-formatting": "prettier --check \"./**/*.{ts,tsx,md,mdx,html}\" \"!./CHANGELOG.md\"", "lint": "eslint -c .eslintrc \"src/**.{ts,tsx}\"", - "changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app ferrarimarco/github-changelog-generator -u andyrichardson -p fielder" + "changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u andyrichardson -p fielder" }, "author": "Andy Richardson (andyrichardson)", "license": "MIT", @@ -75,9 +75,5 @@ "optionalDependencies": { "preact": ">=10.5.9", "react": ">=16.8.0" - }, - "dependencies": { - "preact": ">=10.5.9", - "react": ">=16.8.0" } }