diff --git a/CHANGELOG.md b/CHANGELOG.md index 913346288..8c4491920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 2.3.2 + - Simplify the async arrow fn task() API to allow omitting the `this` param, e.g. + `myTask = task(async () => {})` (#477) + ### 2.3.1 - Add runtime assertion to detect transpilation failures with the new async arrow fn API diff --git a/package.json b/package.json index efedca668..610a1aec1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-concurrency", - "version": "2.3.1", + "version": "2.3.2", "description": "Improved concurrency/async primitives for Ember.js", "scripts": { "build": "ember build --environment=production",