Skip to content

Commit 3eb957c

Browse files
committed
Prepare 4.0.0 release
1 parent b6e26be commit 3eb957c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 4.0.0
2+
3+
- Upgrade to elm-explorations/test 2.0.0
4+
5+
16
## 3.8.0
27

38
- Added an unused definition to workaround issues with `elm publish`

elm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "avh4/elm-program-test",
44
"summary": "Test Elm programs",
55
"license": "MIT",
6-
"version": "3.8.0",
6+
"version": "4.0.0",
77
"exposed-modules": [
88
"ProgramTest",
99
"SimulatedEffect.Cmd",

src/ProgramTest.elm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module ProgramTest exposing
2828
, simulateLastEffect
2929
, fail, createFailed
3030
, getOutgoingPortValues
31-
, elmMajorVersionHack_3
31+
, elmMajorVersionHack_4
3232
)
3333

3434
{-| A `ProgramTest` simulates the execution of an Elm program
@@ -198,7 +198,7 @@ These functions may be useful if you are writing your own custom assertion funct
198198
199199
# Elm language workaround
200200
201-
@docs elmMajorVersionHack_3
201+
@docs elmMajorVersionHack_4
202202
203203
-}
204204

@@ -2353,6 +2353,6 @@ and [elm diff / publish is unaware of breaking visual changes · Issue #2145 ·
23532353
are addressed, this is required to allow the major version of this package to be updated.
23542354
23552355
-}
2356-
elmMajorVersionHack_3 : ()
2357-
elmMajorVersionHack_3 =
2356+
elmMajorVersionHack_4 : ()
2357+
elmMajorVersionHack_4 =
23582358
()

0 commit comments

Comments
 (0)