Skip to content

Commit

Permalink
Bump to Flow 0.85
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Oct 30, 2018
1 parent 3fa77e4 commit 7ac0b87
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.10.6
-------

- Make Flow 0.85 compatible


v1.10.5
-------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"coveralls": "^3.0.2",
"eslint": "^5.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"flow-bin": "^0.84.0",
"flow-bin": "^0.85.0",
"flow-copy-source": "^2.0.1",
"flow-typed": "^2.5.1",
"import-sort-cli": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/string.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const email = regex(
* - url(['http']) accepts only HTTP
* - url(['https', 'git+ssh']) accepts both https:// and git+ssh:// URLs
*/
export const url = (schemes: Array<string> = DEFAULT_SCHEMES) =>
export const url = (schemes: Array<string> = DEFAULT_SCHEMES): Decoder<string> =>
compose(
string,
(value: string) => {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2322,10 +2322,10 @@ flat-cache@^1.2.1:
graceful-fs "^4.1.2"
write "^0.2.1"

flow-bin@^0.84.0:
version "0.84.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.84.0.tgz#4cb2364c750fb37a7840524fa62456b53f64cdcb"
integrity sha512-ocji8eEYp+YfICsm+F6cIHUcD7v5sb0/ADEXm6gyUKdjQzmSckMrPUdZtyfP973t3YGHKliUMxMvIBHyR5LbXQ==
flow-bin@^0.85.0:
version "0.85.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.85.0.tgz#a3ca80748a35a071d5bbb2fcd61d64d977fc53a6"
integrity sha512-ougBA2q6Rn9sZrjZQ9r5pTFxCotlGouySpD2yRIuq5AYwwfIT8HHhVMeSwrN5qJayjHINLJyrnsSkkPCZyfMrQ==

flow-copy-source@^2.0.1:
version "2.0.2"
Expand Down

0 comments on commit 7ac0b87

Please sign in to comment.