Bump version number to 0.12

This commit is contained in:
Evan Czaplicki 2014-03-21 15:28:35 -07:00
parent e2aa6087bc
commit 3a036d9621
3 changed files with 9 additions and 8 deletions

View file

@ -1,5 +1,5 @@
Name: Elm Name: Elm
Version: 0.11 Version: 0.12
Synopsis: The Elm language module. Synopsis: The Elm language module.
Description: Elm aims to make client-side web-development more pleasant. Description: Elm aims to make client-side web-development more pleasant.
It is a statically/strongly typed, functional reactive It is a statically/strongly typed, functional reactive
@ -14,7 +14,7 @@ License-file: LICENSE
Author: Evan Czaplicki Author: Evan Czaplicki
Maintainer: info@elm-lang.org Maintainer: info@elm-lang.org
Copyright: Copyright: (c) 2011-2013 Evan Czaplicki Copyright: Copyright: (c) 2011-2014 Evan Czaplicki
Category: Compiler, Language Category: Compiler, Language

View file

@ -1,7 +1,7 @@
## next ## 0.12
Breaking Changes: #### Breaking Changes:
* Overhaul Graphics.Input library (inspired by Spiros Eliopoulos and Jeff Smitts) * Overhaul Graphics.Input library (inspired by Spiros Eliopoulos and Jeff Smitts)
* Overhaul Text library to accomodate new Graphics.Input.Field * 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 * Revise the semantics of keepWhen and dropWhen to only update when
the filtered signal changes (thanks Max New and Janis Voigtländer) the filtered signal changes (thanks Max New and Janis Voigtländer)
Improvements: #### Improvements:
* Add Graphics.Input.Field for customizable text fields * Add Graphics.Input.Field for customizable text fields
* Add Trampoline library (thanks to @maxsnew and @timthelion) * Add Trampoline library (thanks to @maxsnew and @timthelion)

View file

@ -1,9 +1,9 @@
{ "version": "0.11" { "version": "0.12"
, "summary": "Elm's standard libraries" , "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" , "license": "BSD3"
, "repository": "http://github.com/evancz/Elm.git" , "repository": "http://github.com/evancz/Elm.git"
, "elm-version": "0.11" , "elm-version": "0.12"
, "dependencies": {} , "dependencies": {}
, "exposed-modules": , "exposed-modules":
[ "Basics" [ "Basics"
@ -17,6 +17,7 @@
, "Graphics.Element" , "Graphics.Element"
, "Graphics.Collage" , "Graphics.Collage"
, "Graphics.Input" , "Graphics.Input"
, "Graphics.Input.Field"
, "Http" , "Http"
, "JavaScript" , "JavaScript"
, "JavaScript.Experimental" , "JavaScript.Experimental"