Skip to content

Commit 493a280

Browse files
Update to v0.14.0-rc3 (#158)
1 parent f5f9550 commit 493a280

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515

1616
- name: Set up PureScript toolchain
1717
uses: purescript-contrib/setup-purescript@main
18+
with:
19+
purescript: "0.14.0-rc3"
1820

1921
- name: Cache PureScript dependencies
2022
uses: actions/cache@v2

bower.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@
2323
"package.json"
2424
],
2525
"dependencies": {
26-
"purescript-aff": "^5.0.0",
27-
"purescript-argonaut-core": "^5.0.0",
28-
"purescript-arraybuffer-types": "^2.0.0",
29-
"purescript-web-xhr": "^3.0.0",
30-
"purescript-foreign": "^5.0.0",
31-
"purescript-form-urlencoded": "^5.0.0",
32-
"purescript-http-methods": "^4.0.0",
33-
"purescript-integers": "^4.0.0",
34-
"purescript-math": "^2.1.1",
35-
"purescript-media-types": "^4.0.0",
36-
"purescript-nullable": "^4.0.0",
37-
"purescript-refs": "^4.1.0",
38-
"purescript-unsafe-coerce": "^4.0.0"
26+
"purescript-aff": "main",
27+
"purescript-argonaut-core": "main",
28+
"purescript-arraybuffer-types": "main",
29+
"purescript-web-xhr": "master",
30+
"purescript-foreign": "master",
31+
"purescript-form-urlencoded": "main",
32+
"purescript-http-methods": "main",
33+
"purescript-integers": "master",
34+
"purescript-math": "master",
35+
"purescript-media-types": "main",
36+
"purescript-nullable": "main",
37+
"purescript-refs": "master",
38+
"purescript-unsafe-coerce": "master"
3939
},
4040
"devDependencies": {
41-
"purescript-console": "^4.1.0"
41+
"purescript-console": "master"
4242
}
4343
}

packages.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
let upstream =
2-
https://github.com/purescript/package-sets/releases/download/psc-0.13.8-20201007/packages.dhall sha256:35633f6f591b94d216392c9e0500207bb1fec42dd355f4fecdfd186956567b6b
2+
https://raw.githubusercontent.com/purescript/package-sets/prepare-0.14/src/packages.dhall
33

44
in upstream

src/Affjax.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ request req =
246246
ResponseFormat.String _ -> unsafeReadTagged "String"
247247
ResponseFormat.Ignore coe -> const $ coe (pure unit)
248248

249+
type AjaxRequest :: Type -> Type
249250
type AjaxRequest a =
250251
{ method :: String
251252
, url :: URL

0 commit comments

Comments
 (0)