Skip to content

Commit

Permalink
Bump version to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-ilyin committed Jul 12, 2017
1 parent 373752b commit fb0af19
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 2.1.1 - July 12 2017
### 2.1.2 - July 12 2017
* removes formatting from Decode.succeed

#### 2.1.1 - July 12 2017
* back to net4.5 and target 4.1.0.0

#### 2.1.0 - July 6 2017
Expand Down
8 changes: 4 additions & 4 deletions src/EdIlyin.FSharp.Elm.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("EdIlyin.FSharp.Elm.Core")>]
[<assembly: AssemblyProductAttribute("EdIlyin.FSharp.Elm.Core")>]
[<assembly: AssemblyDescriptionAttribute("Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc")>]
[<assembly: AssemblyVersionAttribute("2.1.1")>]
[<assembly: AssemblyFileVersionAttribute("2.1.1")>]
[<assembly: AssemblyVersionAttribute("2.1.2")>]
[<assembly: AssemblyFileVersionAttribute("2.1.2")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EdIlyin.FSharp.Elm.Core"
let [<Literal>] AssemblyProduct = "EdIlyin.FSharp.Elm.Core"
let [<Literal>] AssemblyDescription = "Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc"
let [<Literal>] AssemblyVersion = "2.1.1"
let [<Literal>] AssemblyFileVersion = "2.1.1"
let [<Literal>] AssemblyVersion = "2.1.2"
let [<Literal>] AssemblyFileVersion = "2.1.2"
let [<Literal>] AssemblyConfiguration = "Release"
2 changes: 1 addition & 1 deletion src/EdIlyin.FSharp.Elm.Core/Decode.fs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let fail error =


let succeed value =
primitive <| sprintf "%A" value <| fun _ -> Decoded value
primitive "anything" <| fun _ -> Decoded value


let setLabel label decoder = { decoder with label = label }
Expand Down

0 comments on commit fb0af19

Please sign in to comment.