Skip to content

Commit

Permalink
v0.116.0
Browse files Browse the repository at this point in the history
Reviewed By: gkz

Differential Revision: D19335806

fbshipit-source-id: 34181ba72eff7fe0b656ce965ec53bf04e8a4c9e
  • Loading branch information
nmote authored and facebook-github-bot committed Jan 10, 2020
1 parent a1f9a4c commit 54ea5bf
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 9 deletions.
15 changes: 15 additions & 0 deletions Changelog.md
@@ -1,3 +1,18 @@
### 0.116.0

New Features:

* Flow now suggests similar names (if applicable) when issuing missing property errors.

Misc:

* Added a rudimentary libdef for `Array.prototype.flat` (#8237, thanks @nnmrts!).
* Fixed a bug that in certain specific cases led to an expression getting typed as `empty` rather than `any`.

Parser:

* `>` and `}` in JSX child text is a parse error.

### 0.115.0

Likely to cause new Flow errors:
Expand Down
2 changes: 1 addition & 1 deletion opam
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "flowtype"
version: "0.115.0"
version: "0.116.0"
maintainer: "flow@fb.com"
authors: "Flow Team <flow@fb.com>"
license: "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-parser-bin/package.json
@@ -1,6 +1,6 @@
{
"name": "flow-parser-bin",
"version": "0.115.0",
"version": "0.116.0",
"description": "The Flow JavaScript parser, via bindings to the native OCaml implementation",
"main": "index.js",
"repository": "https://github.com/facebook/flow.git",
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "flow-parser",
"version": "0.115.0",
"version": "0.116.0",
"description": "JavaScript parser written in OCaml. Produces ESTree AST",
"homepage": "https://flow.org",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/flow-remove-types/package.json
@@ -1,6 +1,6 @@
{
"name": "flow-remove-types",
"version": "2.115.0",
"version": "2.116.0",
"description": "Removes Flow type annotations from JavaScript files with speed and simplicity.",
"author": {
"name": "Flow Team",
Expand Down Expand Up @@ -43,7 +43,7 @@
"es6"
],
"dependencies": {
"flow-parser": "^0.115.0",
"flow-parser": "^0.116.0",
"pirates": "^3.0.2",
"vlq": "^0.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/common/flow_version.ml
Expand Up @@ -5,4 +5,4 @@
* LICENSE file in the root directory of this source tree.
*)

let version = "0.115.0"
let version = "0.116.0"
2 changes: 1 addition & 1 deletion src/parser/META
@@ -1,5 +1,5 @@
name="parser_flow"
version="0.115.0"
version="0.116.0"
requires = "sedlex wtf8"
description="flow parser ocamlfind package"
archive(byte)="parser_flow.cma"
Expand Down
2 changes: 1 addition & 1 deletion src/parser/opam
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "flow_parser"
version: "0.115.0"
version: "0.116.0"
maintainer: "flow@fb.com"
authors: ["Flow Team <flow@fb.com>"]
homepage: "https://github.com/facebook/flow/tree/master/src/parser"
Expand Down
2 changes: 1 addition & 1 deletion website/en/docs/_install/setup-npm.md
Expand Up @@ -11,7 +11,7 @@ npm install --save-dev flow-bin
"name": "my-flow-project",
"version": "1.0.0",
"devDependencies": {
"flow-bin": "^0.115.0"
"flow-bin": "^0.116.0"
},
"scripts": {
"flow": "flow"
Expand Down

0 comments on commit 54ea5bf

Please sign in to comment.