Skip to content

Commit

Permalink
chore(release): 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Jul 17, 2019
1 parent 7740d49 commit c91c219
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [5.2.0](https://github.com/simontonsoftware/s-js-utils/compare/v5.1.0...v5.2.0) (2019-07-17)

### Features

- add `Deferred.isPending()` ([7740d49](https://github.com/simontonsoftware/s-js-utils/commit/7740d49))
- improve typing of `Deferred.resolve` ([977c5b4](https://github.com/simontonsoftware/s-js-utils/commit/977c5b4))

## [5.1.0](https://github.com/simontonsoftware/s-js-utils/compare/v5.0.0...v5.1.0) (2019-06-26)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion docs/typedoc/assets/js/search.js

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

36 changes: 32 additions & 4 deletions docs/typedoc/classes/deferred.html
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,9 @@
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="deferred.html#resolve" class="tsd-kind-icon">resolve</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="deferred.html#ispending" class="tsd-kind-icon">is<wbr>Pending</a>
</li>
</ul>
</li>
<li class=" tsd-kind-variable tsd-is-not-exported">
Expand Down Expand Up @@ -1018,6 +1021,12 @@ <h3>Properties</h3>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="deferred.html#resolve" class="tsd-kind-icon">resolve</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class"><a href="deferred.html#ispending" class="tsd-kind-icon">is<wbr>Pending</a></li>
</ul>
</section>
</div>
</section>
</section>
Expand All @@ -1033,7 +1042,7 @@ <h3>constructor</h3>
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L17">lib/deferred.ts:17</a></li>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L21">lib/deferred.ts:21</a></li>
</ul>
</aside>
</li>
Expand All @@ -1048,7 +1057,7 @@ <h3>promise</h3>
<div class="tsd-signature tsd-kind-icon">promise<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L15">lib/deferred.ts:15</a></li>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L17">lib/deferred.ts:17</a></li>
</ul>
</aside>
</section>
Expand All @@ -1058,7 +1067,7 @@ <h3>reject</h3>
<div class="tsd-signature tsd-kind-icon">reject<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L17">lib/deferred.ts:17</a></li>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L19">lib/deferred.ts:19</a></li>
</ul>
</aside>
</section>
Expand All @@ -1068,11 +1077,30 @@ <h3>resolve</h3>
<div class="tsd-signature tsd-kind-icon">resolve<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L16">lib/deferred.ts:16</a></li>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L18">lib/deferred.ts:18</a></li>
</ul>
</aside>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="ispending" class="tsd-anchor"></a>
<h3>is<wbr>Pending</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">is<wbr>Pending<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/simontonsoftware/s-js-utils/blob/master/projects/s-js-utils/src/lib/deferred.ts#L35">lib/deferred.ts:35</a></li>
</ul>
</aside>
</li>
</ul>
</section>
</section>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s-js-utils-platform",
"version": "5.1.0",
"version": "5.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion projects/s-js-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s-js-utils",
"version": "5.1.0",
"version": "5.2.0",
"author": "Simonton Software",
"license": "MIT",
"repository": "simontonsoftware/s-js-utils",
Expand Down

0 comments on commit c91c219

Please sign in to comment.