Release version 4.0.0-rc.2

This commit is contained in:
eryn L. K 2022-01-02 23:28:47 -05:00
parent e192db7946
commit 7fc52a1cd4
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## [4.0.0-rc.2] - 2022-01-02
### Fixed
- Fix bug where Promise.fold does not return correct value if there is an unresolved Promise in the passed list (#77)
## [4.0.0-rc.1] - 2021-12-28 ## [4.0.0-rc.1] - 2021-12-28
### Changed ### Changed
- `Promise:finally` no longer observes a rejection from a Promise. Calling `Promise:finally` is mostly transparent now. - `Promise:finally` no longer observes a rejection from a Promise. Calling `Promise:finally` is mostly transparent now.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "evaera/roblox-lua-promise" name = "evaera/roblox-lua-promise"
version = "4.0.0-rc.1" version = "4.0.0-rc.2"
author = "evaera" author = "evaera"
content_root = "lib" content_root = "lib"
license = "MIT" license = "MIT"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "evaera/promise" name = "evaera/promise"
description = "Promise implementation for Roblox" description = "Promise implementation for Roblox"
version = "4.0.0-rc.1" version = "4.0.0-rc.2"
license = "MIT" license = "MIT"
registry = "https://github.com/UpliftGames/wally-index" registry = "https://github.com/UpliftGames/wally-index"
realm = "shared" realm = "shared"