From 84b0a3cb37d35605bc584fc2c6efc7f39faea0a4 Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 8 Sep 2020 17:25:42 +0200 Subject: [PATCH 1/5] Update Elm version in test fixtures to 0.19.1 --- test/fixtures/elm.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/elm.json b/test/fixtures/elm.json index ce36fa3..d47ac2e 100644 --- a/test/fixtures/elm.json +++ b/test/fixtures/elm.json @@ -3,7 +3,7 @@ "source-directories": [ "." ], - "elm-version": "0.19.0", + "elm-version": "0.19.1", "dependencies": { "direct": { "elm/browser": "1.0.0", From f17bd3950813bf2953c537aeb035cfb5725c9e8a Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 8 Sep 2020 17:36:35 +0200 Subject: [PATCH 2/5] Fix parsing error in SimplestMain.elm test fixture --- test/fixtures/SimplestMain.elm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/fixtures/SimplestMain.elm b/test/fixtures/SimplestMain.elm index 771e409..54fc33f 100644 --- a/test/fixtures/SimplestMain.elm +++ b/test/fixtures/SimplestMain.elm @@ -1,4 +1,7 @@ +module SimplestMain exposing (..) + import Html + main = Html.text "Hello, World!" From 437ef7001855906484df5c54119f4c1067dd85af Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 8 Sep 2020 17:36:57 +0200 Subject: [PATCH 3/5] Fix unanticipated parsing error in Bad.elm test fixture --- test/compile.ts | 2 +- test/fixtures/Bad.elm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/compile.ts b/test/compile.ts index 5b446a1..61672fc 100644 --- a/test/compile.ts +++ b/test/compile.ts @@ -73,7 +73,7 @@ describe("#compileToString", function () { expect(err).to.be.an('error'); expect(String(err)) .to.contain("Compilation failed") - .and.contain("PARSE ERROR"); + .and.contain("MISSING EXPRESSION"); }); }); diff --git a/test/fixtures/Bad.elm b/test/fixtures/Bad.elm index 3934ce7..3b54a56 100644 --- a/test/fixtures/Bad.elm +++ b/test/fixtures/Bad.elm @@ -1,4 +1,4 @@ -module Bad +module Bad exposing (..) main = From 07868b732d18452279de370a87c9f684d564ef2b Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 8 Sep 2020 17:39:28 +0200 Subject: [PATCH 4/5] Update Elm version on CI to 0.19.1-3 --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 53da1b1..0b84194 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ os: env: matrix: - - ELM_VERSION=0.19.0-no-deps + - ELM_VERSION=0.19.1-3 before_install: - rm -rf ~/.elm diff --git a/appveyor.yml b/appveyor.yml index 52537ac..767a2f1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ environment: - ELM_VERSION: "0.19.0-bugfix6" + ELM_VERSION: "0.19.1-3" matrix: - nodejs_version: "12.0" - nodejs_version: "10.0" From ae430c467c8a1cefdfda5ad9fcabe83d436f1be5 Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 8 Sep 2020 18:22:40 +0200 Subject: [PATCH 5/5] Update Elm version in example to 0.19.1 --- examples/elm.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/elm.json b/examples/elm.json index a587ae1..dddfda2 100644 --- a/examples/elm.json +++ b/examples/elm.json @@ -3,7 +3,7 @@ "source-directories": [ "." ], - "elm-version": "0.19.0", + "elm-version": "0.19.1", "dependencies": { "direct": { "elm/browser": "1.0.0",