Skip to content

Commit

Permalink
Prepare 3.6.0 (#2536)
Browse files Browse the repository at this point in the history
* Update HISTORY

* Bump esy.json, package.json, reason.json

* Bump package.ml
  • Loading branch information
ryyppy authored and cristianoc committed Jan 27, 2020
1 parent faf9282 commit 2860cc2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 3.6.0

Minor:
- External syntax: make the `external ... = ""` part optional (@romanschejbal)[#2464](https://github.com/facebook/reason/pull/2464)
- `external myFn: (string) => unit` is now equivalent to `external myFn: (string) => "myFn"`

This comment has been minimized.

Copy link
@romanschejbal

romanschejbal Jan 28, 2020

Contributor

I know this is probs still a subject to change, but little typo here: the latter should beexternal myFn: (string) => unit = "myFn"


Fixes:
- Fixes issues where `method` and similar keywords will be transformed to `method_` (@cristianoc) [#2530](https://github.com/facebook/reason/pull/2530)

## 3.5.4

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion esy.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "reason-cli",
"notes": "This is just the dev package config (also built as globally installable reason-cli). See ./refmt.json ./rtop.json for individual release package configs.",
"license": "MIT",
"version": "3.5.4",
"version": "3.6.0",
"dependencies": {
"ocaml": " >= 4.2.0 < 4.11.0",
"@opam/fix": "*",
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": "reason",
"version": "3.5.4",
"version": "3.6.0",
"description": "Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion reason.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@esy-ocaml/reason",
"version": "3.5.4",
"version": "3.6.0",
"license": "MIT",
"description": "Native Compiler Support for Reason: Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions src/refmt/package.ml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

let version = "3.5.1"
let git_version = "d3deb518e7ada9d39be8eb9e1d6d7ed140b821c4"
let git_short_version = "d3deb518"
let version = "3.6.0"
let git_version = "59339f6fde0ea2cd4822d32bb99a7ec5b6865e3a"
let git_short_version = "59339f6"

0 comments on commit 2860cc2

Please sign in to comment.