Skip to content

Commit

Permalink
[Release] Increase version to 0.5.0 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
nev21 authored Mar 30, 2024
1 parent ed0045e commit 24a5c6b
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v0.5.0 Mar 29th, 2024

## Changelog

- #115 [Feature] Add size tests
- #116 [Bug] createAllPromise signature is different from native Promise.all
- #117 [Feature] Add Asynchronous helper functions
- #132 [Bug] Package sizes are too large
- #148 [Feature] Add Race and Any Promise support
- #149 Update rush.json to 5.118.1
- #119 Update generation for better Tree-Shaking

# v0.4.0 Dec 13th, 2023

## Changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Install the npm packare: `npm install @nevware21/ts-async --save`
> It is suggested / recommended that you use the following definition in your `package.json` so that you are compatible with any future releases as they become available
> we do not intend to make ANY known breaking changes moving forward until v2.x
> ```json
> "@nevware21/ts-async": ">= 0.4.0 < 2.x"
> "@nevware21/ts-async": ">= 0.5.0 < 2.x"
> ```
And then just import the helpers and use them.
Expand Down
19 changes: 19 additions & 0 deletions common/config/rush/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/ts-async",
"description": "support for asynchronous development with a Promise based task Scheduler, several different Promise implementations (synchronous, idle, asynchronous and native runtime wrappers), await helpers, and aliases all built and tested using TypeScript.",
"version": "0.4.0",
"version": "0.5.0",
"homepage": "https://github.com/nevware21/ts-async",
"sideEffects": false,
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lib/src/helpers/doWhileAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function _doneChk<T>(isDone: boolean, state: IWhileState<T>, value: T, thisArg?:
state.iter++;

return result;
};
}

/**
* Performs a while loop, calling the provided `callbackFn` function until the `state.isDone`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/ts-async",
"description": "support for asynchronous development with a Promise based task Scheduler, several different Promise implementations (synchronous, idle, asynchronous and native runtime wrappers), await helpers, and aliases all built and tested using TypeScript.",
"version": "0.4.0",
"version": "0.5.0",
"homepage": "https://github.com/nevware21/ts-async",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit 24a5c6b

Please sign in to comment.