Skip to content

Commit

Permalink
version bump 🍰
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmit committed Aug 8, 2015
1 parent f3cd5ff commit 47a7699
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
### 3.4.0

* Adds `allow-empty` argument to helpers to prevent Invalid Date to be rendered when passed an empty value (null, undefined, or "")

```hbs
{{moment-format date allow-empty=true}}
```

* Adds `locale` argument to helpers to locally scope locale format to specific helpers

```hbs
{{moment-format date locale='es'}}
```

* Adds a global output format string option to config/environment

```js
module.exports = function() {
return {
moment: {
outputFormat: 'L' // overrides the `LLLL` that moment defaults to
}
}
};
```

### 3.3.0

* Adds toNow computed property macro
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-moment",
"version": "3.3.0",
"version": "3.4.0",
"description": "Moment.js template helpers and computed property macros for Ember",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 47a7699

Please sign in to comment.