Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit bff6994

Browse files
committed
Release version 0.24.0.
# 0.24.0 - Improved debug output and number of options, and made controllable from bsconfig.json. - Fixed issue with import strings containig `.\directory` on Windows. - Extended support for signatures and module types. - Module include is supported for Type Expansion. - First-orer modules are supported for Type Expansion. - Functor application supported for Type Expansion. - Annotating a type means all the types mentioned in it are also considered annotated. (Implemented via Type Expansion). - Add support for type expansion (#70)
1 parent 96f9cb7 commit bff6994

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

Changes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.24.0
2+
- Improved debug output and number of options, and made controllable from bsconfig.json.
3+
- Fixed issue with import strings containig `.\directory` on Windows.
4+
- Extended support for signatures and module types.
5+
- Module include is supported for Type Expansion.
6+
- First-orer modules are supported for Type Expansion.
7+
- Functor application supported for Type Expansion.
8+
- Annotating a type means all the types mentioned in it are also considered annotated. (Implemented via Type Expansion).
9+
- Add support for type expansion (https://github.com/cristianoc/genType/issues/70)
10+
111
# 0.23.0
212
- Clean up terminology used in README.md. Following the cleanup plan on import/export in https://github.com/cristianoc/genType/issues/70.
313
- Implement principle 1: an imported type is also exported to other modules.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Reason genType 0.23.0
1+
# Reason genType 0.24.0
22

33
> **Disclosure:** This project used to be called `genFlow` but has been renamed to `genType`. To migrate from an earlier version, use `@genType` annotations, change the path to use `gentype.native`, and move the config inside `bsconfig.json`.
44
@@ -28,10 +28,10 @@ Wrappers to export ReasonReact components to JavaScript are generated when the a
2828
# Will download and automatically untar the file in the current directory as gentype.native
2929
3030
# MacOS
31-
curl -L https://github.com/cristianoc/genType/releases/download/v0.23.0/gentype-macos.tar.gz | tar xz
31+
curl -L https://github.com/cristianoc/genType/releases/download/v0.24.0/gentype-macos.tar.gz | tar xz
3232
3333
# Linux
34-
curl -L https://github.com/cristianoc/genType/releases/download/v0.23.0/gentype-linux.tar.gz | tar xz
34+
curl -L https://github.com/cristianoc/genType/releases/download/v0.24.0/gentype-linux.tar.gz | tar xz
3535
```
3636

3737
# Quick Start: Set up genType in existing TypeScript / Flow / BuckleScript project

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gentype",
3-
"version": "0.23.0",
3+
"version": "0.24.0",
44
"description": "Use Reason values from Javascript: vanilla, or TypeScript/FlowType-annotated",
55
"license": "MIT",
66
"scripts": {

src/GenType.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
open GenTypeCommon;
66

7-
let version = "0.23.0";
7+
let version = "0.24.0";
88

99
let signFile = s => s;
1010

0 commit comments

Comments
 (0)