diff --git a/CHANGELOG.md b/CHANGELOG.md index af40d3d..7c7045d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.5.0](https://github.com/rokucommunity/promises/compare/v0.4.0...v0.5.0) - 2024-11-18 +### Added + - Feature/allSettled(), any(), race(). ([#25](https://github.com/rokucommunity/promises/pull/25)) +### Changed + - all internal promise rejections now reject with an exception object instead of a string ([#25](https://github.com/rokucommunity/promises/pull/25)) + + + ## [0.4.0](https://github.com/rokucommunity/promises/compare/v0.3.0...v0.4.0) - 2024-10-18 ### Fixed - Prevent stackoverflow ([#23](https://github.com/rokucommunity/promises/pull/23)) diff --git a/package-lock.json b/package-lock.json index c1a2e54..3c8018e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@rokucommunity/promises", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@rokucommunity/promises", - "version": "0.4.0", + "version": "0.5.0", "license": "MIT", "devDependencies": { "@types/fs-extra": "^11.0.1", diff --git a/package.json b/package.json index 2a9fc77..ecefb68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rokucommunity/promises", - "version": "0.4.0", + "version": "0.5.0", "author": "RokuCommunity", "license": "MIT", "description": "A Promise-like implementation for BrightScript/Roku",