Skip to content

Commit

Permalink
[Release] Increase version to 0.2.5 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
nev21 authored Jun 12, 2023
1 parent 7983398 commit 69afeec
Show file tree
Hide file tree
Showing 36 changed files with 1,659 additions and 1,526 deletions.
12 changes: 12 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v0.2.5 June 11th, 2023

## Changelog

- #54 Add Pre-Processor to remove _debugLog from modules
- This removes the debug / test code from the final generated packages (resulting in smaller production bundles)
- #57 Bump @rollup/plugin-commonjs from 24.1.0 to 25.0.0 in /lib
- #60 Bump @nevware21/ts-utils min version from 0.9.5 to 0.9.7
- #61 Bump @microsoft/rush from 5.98.0 to 5.99.0
- #62 Create SECURITY.md
- #63 Add Issue Templates

# v0.2.4 Apr 25th, 2023

## Changelog
Expand Down
2 changes: 1 addition & 1 deletion docs/typedoc/assets/main.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions docs/typedoc/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,11 @@ a.tsd-index-link {
color: var(--color-text);
}
.tsd-accordion-summary {
list-style-type: none;
display: flex;
align-items: center;
list-style-type: none; /* hide marker on non-safari */
outline: none; /* broken on safari, so just hide it */
}
.tsd-accordion-summary::-webkit-details-marker {
display: none; /* hide marker on safari */
}
.tsd-accordion-summary,
.tsd-accordion-summary a {
Expand All @@ -784,7 +786,7 @@ a.tsd-index-link {
cursor: pointer;
}
.tsd-accordion-summary a {
flex-grow: 1;
width: calc(100% - 1.5rem);
}
.tsd-accordion-summary > * {
margin-top: 0;
Expand Down
91 changes: 47 additions & 44 deletions docs/typedoc/functions/createAllPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createAsyncAllPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createAsyncPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createAsyncRejectedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createAsyncResolvedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createIdleAllPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createIdlePromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createIdleRejectedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createIdleResolvedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createNativeAllPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createNativePromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createNativeRejectedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createNativeResolvedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createRejectedPromise.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/createResolvedPromise.html

Large diffs are not rendered by default.

88 changes: 45 additions & 43 deletions docs/typedoc/functions/createSyncAllPromise.html

Large diffs are not rendered by default.

88 changes: 45 additions & 43 deletions docs/typedoc/functions/createSyncPromise.html

Large diffs are not rendered by default.

88 changes: 45 additions & 43 deletions docs/typedoc/functions/createSyncRejectedPromise.html

Large diffs are not rendered by default.

88 changes: 45 additions & 43 deletions docs/typedoc/functions/createSyncResolvedPromise.html

Large diffs are not rendered by default.

99 changes: 51 additions & 48 deletions docs/typedoc/functions/createTaskScheduler.html

Large diffs are not rendered by default.

114 changes: 62 additions & 52 deletions docs/typedoc/functions/doAwait.html

Large diffs are not rendered by default.

91 changes: 47 additions & 44 deletions docs/typedoc/functions/doAwaitResponse.html

Large diffs are not rendered by default.

98 changes: 52 additions & 46 deletions docs/typedoc/functions/doFinally.html

Large diffs are not rendered by default.

86 changes: 44 additions & 42 deletions docs/typedoc/functions/setCreatePromiseImpl.html

Large diffs are not rendered by default.

88 changes: 45 additions & 43 deletions docs/typedoc/functions/setDetaultIdleTimeout.html

Large diffs are not rendered by default.

97 changes: 50 additions & 47 deletions docs/typedoc/functions/setPromiseDebugState.html

Large diffs are not rendered by default.

206 changes: 103 additions & 103 deletions docs/typedoc/index.html

Large diffs are not rendered by default.

112 changes: 58 additions & 54 deletions docs/typedoc/interfaces/AwaitResponse.html

Large diffs are not rendered by default.

215 changes: 118 additions & 97 deletions docs/typedoc/interfaces/IPromise.html

Large diffs are not rendered by default.

143 changes: 76 additions & 67 deletions docs/typedoc/interfaces/ITaskScheduler.html

Large diffs are not rendered by default.

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.2.4",
"version": "0.2.5",
"homepage": "https://github.com/nevware21/ts-async",
"sideEffects": false,
"license": "MIT",
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.2.4",
"version": "0.2.5",
"homepage": "https://github.com/nevware21/ts-async",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit 69afeec

Please sign in to comment.