Skip to content

Commit

Permalink
chore: Release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Mar 15, 2021
1 parent 9f610e6 commit 86a2eb6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

v4.0.0

- Refactor all components to Glimmer components [#189](https://github.com/mydea/ember-date-components/pull/189)
- Allow to yield named blocks for `<DateTimePicker>` [#190](https://github.com/mydea/ember-date-components/pull/190)
- Allow to provide custom component for `<TimePicker>` [#192](https://github.com/mydea/ember-date-components/pull/192)
- Ensure ember-moment is installed when installing this addon [#191](https://github.com/mydea/ember-date-components/pull/191)

BREAKING CHANGES:

- Rename `action` argument to `onChange` (See: [#189](https://github.com/mydea/ember-date-components/pull/189))
- If you used to extend some of the components, you will probably need to adjust that code. Everything that used to be a computed property is now a native getter and needs to be adjusted accordingly - please check the source code directly for these cases.

Not really a breaking change, but v4 really enforces the data down, actions up approach. It will now assert that `@onChange` is set and present and only show the passed in values, never any internal state.


v3.1.0

- Add disabled option for Ember Basic Dropdown to datetime picker
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-date-components",
"version": "3.1.0",
"version": "4.0.0",
"description": "An Ember add-on which provides pure Ember-based date picker components.",
"scripts": {
"build": "ember build --environment=production",
Expand Down

0 comments on commit 86a2eb6

Please sign in to comment.