Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Jul 2, 2019
1 parent c35d5a2 commit 8f8f418
Show file tree
Hide file tree
Showing 12 changed files with 164 additions and 145 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
language: node_js
node_js:
- "6"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- '10'
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
**Note**: Gaps between patch versions are faulty/broken releases. **Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 0.5.0

- **Breaking Change**
- upgrade to `[email protected]` (@gcanti)
- upgrade to `[email protected]` (@gcanti)

# 0.4.1

- **Polish**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
---
title: ConcurrentFuture.ts
nav_order: 1
parent: Modules
---

**Table of contents**
---

<h2 class="text-delta">Table of contents</h2>

- [URI (type alias)](#uri-type-alias)
- [URI (constant)](#uri-constant)
- [concurrentFuture (constant)](#concurrentfuture-constant)

---

# URI (type alias)

**Signature**
Expand All @@ -17,6 +22,8 @@ nav_order: 1
export type URI = typeof URI
```
Added in v0.5.0
# URI (constant)
**Signature**
Expand All @@ -25,10 +32,14 @@ export type URI = typeof URI
export const URI = ...
```

Added in v0.5.0

# concurrentFuture (constant)

**Signature**

```ts
export const concurrentFuture: Alternative2<URI> = ...
```

Added in v0.5.0
15 changes: 13 additions & 2 deletions docs/Future.ts.md → docs/modules/Future.ts.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
---
title: Future.ts
nav_order: 2
parent: Modules
---

**Table of contents**
---

<h2 class="text-delta">Table of contents</h2>

- [URI (type alias)](#uri-type-alias)
- [URI (constant)](#uri-constant)
- [future (constant)](#future-constant)

---

# URI (type alias)

**Signature**
Expand All @@ -17,6 +22,8 @@ nav_order: 2
export type URI = typeof URI
```
Added in v0.5.0
# URI (constant)
**Signature**
Expand All @@ -25,10 +32,14 @@ export type URI = typeof URI
export const URI = ...
```

Added in v0.5.0

# future (constant)

**Signature**

```ts
export const future: Monad2<URI> & Bifunctor2<URI> & ChainRec2<URI> = ...
export const future: Monad2<URI> & Bifunctor2<URI> & ChainRec2<URI> & Alt2<URI> = ...
```

Added in v0.5.0
6 changes: 6 additions & 0 deletions docs/modules/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Modules
has_children: true
permalink: /docs/modules
nav_order: 2
---
11 changes: 10 additions & 1 deletion docs/index.ts.md → docs/modules/index.ts.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
---
title: index.ts
nav_order: 3
parent: Modules
---

**Table of contents**
---

<h2 class="text-delta">Table of contents</h2>

- [concurrentFuture (export)](#concurrentfuture-export)
- [future (export)](#future-export)

---

# concurrentFuture (export)

Exports the whole `ConcurrentFuture.ts` module
Expand All @@ -18,6 +23,8 @@ Exports the whole `ConcurrentFuture.ts` module
export { concurrentFuture }
```

Added in v0.5.0

# future (export)

Exports the whole `Future.ts` module
Expand All @@ -27,3 +34,5 @@ Exports the whole `Future.ts` module
```ts
export { future }
```

Added in v0.5.0
Loading

0 comments on commit 8f8f418

Please sign in to comment.