Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Nov 7, 2018
1 parent 8111d0d commit 8ff29a1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
21 changes: 18 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [5.0.0] - 2018-11-07
### Added
- View strategy selector on examples website.

### Changed
- Render fields inside HTML `label` for accessibility. The previous `label`
elements are now `div` elements with the `elm-form-label` class. To migrate,
replace your old CSS rules `.elm-form label { ... }` with
`.elm-form .elm-form-label { ... }`.

### Removed
- `Form.Value`. Elm 0.19 makes this module unnecessary! The API is simpler now,
allowing you to work with your types directly. To migrate, replace `Value a`
with `a` and initialize your form values explicitly.

## [4.0.1] - 2018-09-02
### Changed
- Replace mentions of old `(,)` operator in docs with the new `Tuple.pair` equivalent in Elm 0.19.
- Replace mentions of old `(,)` operator in docs with the new `Tuple.pair`
equivalent in Elm 0.19.
- Fix example in `Field` documentation.

## [4.0.0] - 2018-08-20
Expand Down Expand Up @@ -88,7 +102,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Initial release.

[Unreleased]: https://github.com/hecrj/composable-form/compare/4.0.1...HEAD
[Unreleased]: https://github.com/hecrj/composable-form/compare/5.0.0...HEAD
[5.0.0]: https://github.com/hecrj/composable-form/compare/4.0.1...5.0.0
[4.0.1]: https://github.com/hecrj/composable-form/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/hecrj/composable-form/compare/3.0.1...4.0.0
[3.0.1]: https://github.com/hecrj/composable-form/compare/3.0.0...3.0.1
Expand Down
2 changes: 1 addition & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "hecrj/composable-form",
"summary": "Build type-safe composable forms in Elm",
"license": "BSD-3-Clause",
"version": "4.0.1",
"version": "5.0.0",
"exposed-modules": [
"Form",
"Form.View",
Expand Down

0 comments on commit 8ff29a1

Please sign in to comment.