From 3e8d56223696534a570e045353adbbc4c81e088c Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 3 Dec 2020 19:31:52 -0800 Subject: [PATCH 1/3] Update packages.dhall to prepare-0.14 bootstrap --- packages.dhall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.dhall b/packages.dhall index b5baf39..9c3ee6f 100644 --- a/packages.dhall +++ b/packages.dhall @@ -1,4 +1,4 @@ let upstream = - https://github.com/purescript/package-sets/releases/download/psc-0.13.8-20200922/packages.dhall sha256:5edc9af74593eab8834d7e324e5868a3d258bbab75c5531d2eb770d4324a2900 + https://raw.githubusercontent.com/purescript/package-sets/prepare-0.14/src/packages.dhall in upstream From b626edcc213addb60308eb08ee1527b6d41caf21 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 3 Dec 2020 19:31:52 -0800 Subject: [PATCH 2/3] Update CI to use v0.14.0-rc3 PS release --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07cee8d..ac99bf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,8 @@ jobs: - name: Set up a PureScript toolchain uses: purescript-contrib/setup-purescript@main + with: + purescript: "0.14.0-rc3" - name: Cache PureScript dependencies uses: actions/cache@v2 From 6d214c0f1e2cc9f6e960f7ba0f7aefc9f2d491d4 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 3 Dec 2020 19:33:12 -0800 Subject: [PATCH 3/3] Update kind syntax for ArrayViewType --- src/Data/ArrayBuffer/Types.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/ArrayBuffer/Types.purs b/src/Data/ArrayBuffer/Types.purs index 8328947..a6ceddc 100644 --- a/src/Data/ArrayBuffer/Types.purs +++ b/src/Data/ArrayBuffer/Types.purs @@ -15,7 +15,7 @@ type ByteOffset = Int -- | Length in bytes of a DataView or ArrayBuffer type ByteLength = Int -foreign import kind ArrayViewType +data ArrayViewType foreign import data Int8 :: ArrayViewType foreign import data Int16 :: ArrayViewType