From 20d65e56dbba9d30bd731a2b5ded9fba367f6ed2 Mon Sep 17 00:00:00 2001 From: Matthias Leutenegger <2-mleutenegger@users.noreply.git.syntro.ch> Date: Tue, 26 Jul 2022 16:45:04 +0200 Subject: [PATCH] release/1.0.0 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ package.json | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 package.json diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2b3e973 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + +## [Unreleased] + + + +## 1.0.0 - 2022-07-26 +### 🍰 Added +- standardized testsuite ([#3](https://github.com/syntro-opensource/silverstripe-bootstrap-forms/issues/3)) +- frontend Phone Field +- validation errors are displayed as such +- frontend CheckboxSetField and OptionsetField +- frontend TextareaField +- frontend CheckboxField +- frontend FieldGroup +- frontend DropdownField +- frontend EmailField +- frontend TextField +- form holder trait + +### Pull Requests +- Merge pull request [#2](https://github.com/syntro-opensource/silverstripe-bootstrap-forms/issues/2) from syntro-opensource/dependabot/github_actions/codecov/codecov-action-3.1.0 + + +[Unreleased]: https://github.com/syntro-opensource/silverstripe-bootstrap-forms/compare/1.0.0...HEAD diff --git a/package.json b/package.json new file mode 100644 index 0000000..54a966d --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "scripts": { + "release": "git fetch && git-chglog -o CHANGELOG.md $([[ ! -z $npm_config_next ]] && echo \"--next-tag $npm_config_next\" )" + } +}