Skip to content

Commit

Permalink
version 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Mar 6, 2020
1 parent 68f1f2c commit 1102a2d
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 27 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
**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.6.5

- **New Feature**
- add `StateFuture` module, #18 (@tetsuo)

# 0.6.4

- **New Feature**
Expand Down
15 changes: 11 additions & 4 deletions docs/modules/index.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ Added in v0.5.0

- [concurrentFuture](#concurrentfuture)
- [future](#future)
- [stateFuture](#statefuture)

---

# concurrentFuture

Exports the whole `ConcurrentFuture.ts` module

**Signature**

```ts
Expand All @@ -31,12 +30,20 @@ Added in v0.5.0

# future

Exports the whole `Future.ts` module

**Signature**

```ts
typeof future
```

Added in v0.5.0

# stateFuture

**Signature**

```ts
typeof stateFuture
```

Added in v0.6.5
31 changes: 13 additions & 18 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fp-ts-fluture",
"version": "0.6.4",
"version": "0.6.5",
"description": "fp-ts bindings for Fluture",
"files": [
"lib",
Expand Down Expand Up @@ -39,7 +39,7 @@
"devDependencies": {
"@types/mocha": "2.2.38",
"@types/node": "^12.12.11",
"docs-ts": "^0.3.4",
"docs-ts": "^0.3.5",
"fluture": "^12.0.2",
"fp-ts": "^2.4.4",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
Expand Down
9 changes: 6 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@
*/
import * as future from './Future'
import * as concurrentFuture from './ConcurrentFuture'
import * as stateFuture from './StateFuture'
export {
/**
* Exports the whole `Future.ts` module
* @since 0.5.0
*/
future,
/**
* Exports the whole `ConcurrentFuture.ts` module
* @since 0.5.0
*/
concurrentFuture
concurrentFuture,
/**
* @since 0.6.5
*/
stateFuture
}

0 comments on commit 1102a2d

Please sign in to comment.