Skip to content

Commit

Permalink
v0.105.2
Browse files Browse the repository at this point in the history
Reviewed By: gabelevi

Differential Revision: D16773406

fbshipit-source-id: 945fd9cb0195fdad5644e0bcd70078f3859f0898
  • Loading branch information
mroch authored and facebook-github-bot committed Aug 13, 2019
1 parent ecba500 commit 5238e60
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
@@ -1,3 +1,11 @@
### 0.105.2

v0.105.0 started running the Flow server in a cgroup on Linux distros that support [cgroup v2](https://www.kernel.org/doc/Documentation/cgroup-v2.txt). However, some versions of `systemd`, which manages cgroups, contain a bug that caused the Flow server to fail to start. This release avoids using `cgroup` on these systems. (#8012)

### 0.105.1

This was an npm-only release to fix a packaging issue. No updated binaries were published.

### 0.105.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.105.0"
version: "0.105.2"
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.105.0",
"version": "0.105.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
@@ -1,6 +1,6 @@
{
"name": "flow-parser",
"version": "0.105.0",
"version": "0.105.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
@@ -1,6 +1,6 @@
{
"name": "flow-remove-types",
"version": "2.105.0",
"version": "2.105.2",
"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.105.0",
"flow-parser": "^0.105.2",
"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.105.0"
let version = "0.105.2"
2 changes: 1 addition & 1 deletion src/parser/META
@@ -1,5 +1,5 @@
name="parser_flow"
version="0.105.0"
version="0.105.2"
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.105.0"
version: "0.105.2"
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.105.0"
"flow-bin": "^0.105.2"
},
"scripts": {
"flow": "flow"
Expand Down

0 comments on commit 5238e60

Please sign in to comment.