Skip to content

Commit a968e81

Browse files
committed
Point to the normal package website!
1 parent 184b22a commit a968e81

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

upgrade-docs/0.19.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,28 +55,28 @@ Both are quite similar to the `elm-package.json` format, and `elm-upgrade` can h
5555

5656
- `String.toInt : String -> Maybe Int` (not `Result` anymore)
5757
- `String.toFloat : String -> Maybe Float` (not `Result` anymore)
58-
- `Basics.toString` becomes [`Debug.toString`](https://alpha.elm-lang.org/packages/elm/core/latest/Debug#toString), [`String.fromInt`](https://alpha.elm-lang.org/packages/elm/core/latest/String#toInt), and [`String.fromFloat`](https://alpha.elm-lang.org/packages/elm/core/latest/String#toFloat).
59-
- `Basics.rem 451 10` becomes [`remainderBy 10 451`](https://alpha.elm-lang.org/packages/elm/core/latest/Basics#remainderBy)
60-
- `451 % 10` becomes [`modBy 10 451`](https://alpha.elm-lang.org/packages/elm/core/latest/Basics#modBy)
58+
- `Basics.toString` becomes [`Debug.toString`](https://package.elm-lang.org/packages/elm/core/latest/Debug#toString), [`String.fromInt`](https://package.elm-lang.org/packages/elm/core/latest/String#toInt), and [`String.fromFloat`](https://package.elm-lang.org/packages/elm/core/latest/String#toFloat).
59+
- `Basics.rem 451 10` becomes [`remainderBy 10 451`](https://package.elm-lang.org/packages/elm/core/latest/Basics#remainderBy)
60+
- `451 % 10` becomes [`modBy 10 451`](https://package.elm-lang.org/packages/elm/core/latest/Basics#modBy)
6161
- `style : List (String, String) -> Attribute msg` becomes `String -> String -> Attribute msg`
62-
- `Html.beginnerProgram` becomes [`Browser.sandbox`](https://alpha.elm-lang.org/packages/elm/browser/latest/Browser#sandbox).
63-
- `Html.program` becomes [`Browser.element`](https://alpha.elm-lang.org/packages/elm/browser/latest/Browser#element) and [`Browser.document`](https://alpha.elm-lang.org/packages/elm/browser/latest/Browser#document).
62+
- `Html.beginnerProgram` becomes [`Browser.sandbox`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#sandbox).
63+
- `Html.program` becomes [`Browser.element`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#element) and [`Browser.document`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#document).
6464

6565

6666
#### Modules Moved
6767

68-
- `Json.Encode` and `Json.Decode` moved to [`elm/json`](https://alpha.elm-lang.org/packages/elm/json/latest)
69-
- `Time` and `Date` moved to [`elm/time`](https://alpha.elm-lang.org/packages/elm/time/latest/) with a significantly improved API
70-
- `Random` moved to [`elm/random`](https://alpha.elm-lang.org/packages/elm/random/latest/) with a better implementation and a few new functions
71-
- `Regex` moved to [`elm/regex`](https://alpha.elm-lang.org/packages/elm/regex/latest) with a much clearer README
68+
- `Json.Encode` and `Json.Decode` moved to [`elm/json`](https://package.elm-lang.org/packages/elm/json/latest)
69+
- `Time` and `Date` moved to [`elm/time`](https://package.elm-lang.org/packages/elm/time/latest/) with a significantly improved API
70+
- `Random` moved to [`elm/random`](https://package.elm-lang.org/packages/elm/random/latest/) with a better implementation and a few new functions
71+
- `Regex` moved to [`elm/regex`](https://package.elm-lang.org/packages/elm/regex/latest) with a much clearer README
7272

7373

7474
#### Packages Moved
7575

7676
- `elm-lang/*` moved to `elm/*`
77-
- `evancz/url-parser` moved to [`elm/url`](https://alpha.elm-lang.org/packages/elm/url/latest) with a simpler and more flexible API
78-
- `elm-tools/elm-parser` moved to [`elm/parser`](https://alpha.elm-lang.org/packages/elm/parser/latest) with speed boost when compiling with the `--optimize` flag
79-
- [`elm/browser`](https://alpha.elm-lang.org/packages/elm/browser/latest) combines and simplifies the following 0.18 packages:
77+
- `evancz/url-parser` moved to [`elm/url`](https://package.elm-lang.org/packages/elm/url/latest) with a simpler and more flexible API
78+
- `elm-tools/elm-parser` moved to [`elm/parser`](https://package.elm-lang.org/packages/elm/parser/latest) with speed boost when compiling with the `--optimize` flag
79+
- [`elm/browser`](https://package.elm-lang.org/packages/elm/browser/latest) combines and simplifies the following 0.18 packages:
8080
- `elm-lang/navigation` with smoother APIs
8181
- `elm-lang/dom` with ability to get node positions and dimensions.
8282
- `elm-lang/mouse` with decoders

0 commit comments

Comments
 (0)