Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. Comparing elm-lang/core 2.1.0 to local changes...
  2. This is a MAJOR change.
  3.  
  4. ------ Changes to module Array - MINOR ------
  5.  
  6. Added:
  7. type Array a
  8.  
  9.  
  10. ------ Changes to module Color - MINOR ------
  11.  
  12. Added:
  13. type Color
  14. type Gradient
  15.  
  16.  
  17. ------ Changes to module Date - MINOR ------
  18.  
  19. Added:
  20. type Date
  21.  
  22.  
  23. ------ Changes to module Dict - MINOR ------
  24.  
  25. Added:
  26. type Dict k v
  27. size : Dict.Dict comparable v -> Int
  28.  
  29.  
  30. ------ Changes to module Graphics.Collage - MAJOR ------
  31.  
  32. Added:
  33. type Path
  34. type Shape
  35.  
  36. Removed:
  37. type alias Path = List (Float, Float)
  38. type alias Shape = List (Float, Float)
  39.  
  40.  
  41. ------ Changes to module Graphics.Element - MAJOR ------
  42.  
  43. Added:
  44. type Direction
  45. type Pos
  46. type Position
  47.  
  48. Removed:
  49. type alias Position =
  50. { horizontal : Three,
  51. vertical : Three,
  52. x : Pos,
  53. y : Pos
  54. }
  55.  
  56.  
  57. ------ Changes to module Json.Decode - MAJOR ------
  58.  
  59. Changed:
  60. - type Decoder a = Decoder
  61. + type Decoder a
  62.  
  63.  
  64.  
  65. ------ Changes to module Json.Encode - MAJOR ------
  66.  
  67. Changed:
  68. - type Value = Value
  69. + type Value
  70.  
  71.  
  72.  
  73. ------ Changes to module Random - MAJOR ------
  74.  
  75. Added:
  76. type Generator a
  77. type Seed
  78. andThen : Random.Generator a -> (a -> Random.Generator b) -> Random.Generator b
  79. map : (a -> b) -> Random.Generator a -> Random.Generator b
  80.  
  81. Removed:
  82. type alias Seed =
  83. { state : State,
  84. next : State -> (Int, State),
  85. split : State -> (State, State),
  86. range : State -> (Int, Int)
  87. }
  88.  
  89.  
  90. ------ Changes to module Regex - MINOR ------
  91.  
  92. Added:
  93. type Regex
  94.  
  95.  
  96. ------ Changes to module Set - MAJOR ------
  97.  
  98. Added:
  99. type Set t
  100. size : Set.Set comparable -> Int
  101.  
  102. Removed:
  103. type alias Set t = Dict.Dict t ()
  104.  
  105.  
  106. ------ Changes to module Signal - MINOR ------
  107.  
  108. Added:
  109. type Address a
  110. type Message
  111. type Signal a
  112.  
  113.  
  114. ------ Changes to module Task - MINOR ------
  115.  
  116. Added:
  117. type Task x a
  118. type ThreadID
  119.  
  120.  
  121. ------ Changes to module Text - MINOR ------
  122.  
  123. Added:
  124. type Text
  125.  
  126.  
  127. ------ Changes to module Transform2D - MINOR ------
  128.  
  129. Added:
  130. type Transform2D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement