Skip to content

Commit

Permalink
v0.196.2
Browse files Browse the repository at this point in the history
Reviewed By: SamChou19815

Differential Revision: D42187476

fbshipit-source-id: 8bb3e988eebf95a63c839e0a8100f756ca9add17
  • Loading branch information
mroch authored and facebook-github-bot committed Jan 4, 2023
1 parent 0be8b9a commit 728216e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.196.2

🎁 This is (hopefully) our last release of the year. Happy holidays! 🎁

* Improve performance when unions flow to intersections
* Fix a crash when using the experimental `saved_state.allow_reinit` option

### 0.196.1

* Fix some missing autocomplete results (regression in 0.196.0)
Expand Down
2 changes: 1 addition & 1 deletion flow_parser.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "flow_parser"
version: "0.196.1"
version: "0.196.2"
maintainer: "flow@fb.com"
authors: ["Flow Team <flow@fb.com>"]
homepage: "https://github.com/facebook/flow/tree/master/src/parser"
Expand Down
4 changes: 2 additions & 2 deletions flowtype.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "flowtype"
version: "0.196.1"
version: "0.196.2"
maintainer: "flow@fb.com"
authors: "Flow Team <flow@fb.com>"
license: "MIT"
Expand All @@ -15,7 +15,7 @@ depends: [
"core_kernel" {>= "v0.14.1" & < "v0.15.0"}
"dtoa" {>= "0.3.2"}
"fileutils" {>= "0.6.3"}
"flow_parser" {= "0.196.1"}
"flow_parser" {= "0.196.2"}
"inotify" {os = "linux" & >= "2.4.1"}
"ounit2" {with-test}
"sedlex" {>= "2.3"}
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-parser-bin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow-parser-bin",
"version": "0.196.1",
"version": "0.196.2",
"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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow-parser",
"version": "0.196.1",
"version": "0.196.2",
"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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow-remove-types",
"version": "2.196.1",
"version": "2.196.2",
"description": "Removes Flow type annotations from JavaScript files with speed and simplicity.",
"author": {
"name": "Flow Team",
Expand Down Expand Up @@ -44,7 +44,7 @@
"es6"
],
"dependencies": {
"flow-parser": "^0.196.1",
"flow-parser": "^0.196.2",
"pirates": "^3.0.2",
"vlq": "^0.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/common/flow_version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* LICENSE file in the root directory of this source tree.
*)

let version = "0.196.1"
let version = "0.196.2"
2 changes: 1 addition & 1 deletion website/en/docs/_install/setup-npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ npm install --save-dev flow-bin
"name": "my-flow-project",
"version": "1.0.0",
"devDependencies": {
"flow-bin": "^0.196.1"
"flow-bin": "^0.196.2"
},
"scripts": {
"flow": "flow"
Expand Down

0 comments on commit 728216e

Please sign in to comment.