diff --git a/Elm.cabal b/Elm.cabal index 30f8f17..deb4620 100644 --- a/Elm.cabal +++ b/Elm.cabal @@ -1,5 +1,5 @@ Name: Elm -Version: 0.11 +Version: 0.12 Synopsis: The Elm language module. Description: Elm aims to make client-side web-development more pleasant. It is a statically/strongly typed, functional reactive @@ -14,7 +14,7 @@ License-file: LICENSE Author: Evan Czaplicki Maintainer: info@elm-lang.org -Copyright: Copyright: (c) 2011-2013 Evan Czaplicki +Copyright: Copyright: (c) 2011-2014 Evan Czaplicki Category: Compiler, Language diff --git a/changelog.txt b/changelog.md similarity index 99% rename from changelog.txt rename to changelog.md index f4d85e8..1a96776 100644 --- a/changelog.txt +++ b/changelog.md @@ -1,7 +1,7 @@ -## next +## 0.12 -Breaking Changes: +#### Breaking Changes: * Overhaul Graphics.Input library (inspired by Spiros Eliopoulos and Jeff Smitts) * Overhaul Text library to accomodate new Graphics.Input.Field @@ -13,7 +13,7 @@ Breaking Changes: * Revise the semantics of keepWhen and dropWhen to only update when the filtered signal changes (thanks Max New and Janis Voigtländer) -Improvements: +#### Improvements: * Add Graphics.Input.Field for customizable text fields * Add Trampoline library (thanks to @maxsnew and @timthelion) diff --git a/libraries/elm_dependencies.json b/libraries/elm_dependencies.json index e91b906..81f0de0 100644 --- a/libraries/elm_dependencies.json +++ b/libraries/elm_dependencies.json @@ -1,9 +1,9 @@ -{ "version": "0.11" +{ "version": "0.12" , "summary": "Elm's standard libraries" -, "description": "The full set of standard libraries for Elm. This library is pegged to the version number of the compiler, so if you are using Elm 0.11, you should be using version 0.11 of the standard libraries." +, "description": "The full set of standard libraries for Elm. This library is pegged to the version number of the compiler, so if you are using Elm 0.12, you should be using version 0.12 of the standard libraries." , "license": "BSD3" , "repository": "http://github.com/evancz/Elm.git" -, "elm-version": "0.11" +, "elm-version": "0.12" , "dependencies": {} , "exposed-modules": [ "Basics" @@ -17,6 +17,7 @@ , "Graphics.Element" , "Graphics.Collage" , "Graphics.Input" + , "Graphics.Input.Field" , "Http" , "JavaScript" , "JavaScript.Experimental"