Skip to content

Commit a2ca6ea

Browse files
committed
Released 0.8.13
1 parent 9b8f0a3 commit a2ca6ea

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
### 0.8.13
3+
- waitForEvent() support for native DOM EventTargets
4+
(instead of just Ember / jQuery objects) (#187)
5+
26
### 0.8.12
37
- Officially release and document "Encapsulated Tasks", which
48
are tasks that can maintain/mutate their own state without

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-concurrency",
3-
"version": "0.8.12",
3+
"version": "0.8.13",
44
"description": "Improved concurrency/async primitives for Ember.js",
55
"directories": {
66
"doc": "doc",

tests/dummy/app/application/controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Controller from '@ember/controller';
22
import config from '../config/environment';
33

4-
const versionRegExp = /\d[.]\d[.]\d/;
4+
const versionRegExp = /\d+[.]\d+[.]\d+/;
55
const {
66
APP: { version }
77
} = config;

0 commit comments

Comments
 (0)