Skip to content

Commit

Permalink
Bump version to 1.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-ilyin committed May 11, 2017
1 parent e8faa04 commit c3c8d46
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 1.0.21 - May 11 2017
### 1.0.22 - May 11 2017
* Moves Json.Decode to Core

#### 1.0.21 - May 11 2017
* Adds Json.Decode.string

#### 1.0.20 - May 10 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("1.0.21")>]
[<assembly: AssemblyFileVersionAttribute("1.0.21")>]
[<assembly: AssemblyVersionAttribute("1.0.22")>]
[<assembly: AssemblyFileVersionAttribute("1.0.22")>]
[<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 = "1.0.21"
let [<Literal>] AssemblyFileVersion = "1.0.21"
let [<Literal>] AssemblyVersion = "1.0.22"
let [<Literal>] AssemblyFileVersion = "1.0.22"
let [<Literal>] AssemblyConfiguration = "Release"
6 changes: 3 additions & 3 deletions src/EdIlyin.FSharp.Elm.Core/EdIlyin.FSharp.Elm.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<Compile Include="Result.fs" />
<Compile Include="Decode.fs" />
<Compile Include="Debug.fs" />
<Compile Include="Json.Encode.fs" />
<Compile Include="Json.Decode.fs" />
<None Include="paket.references" />
<None Include="paket.template" />
<Content Include="App.config" />
<Compile Include="Json.Encode.fs" />
<Compile Include="Json.Decode.fs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Choose>
Expand Down Expand Up @@ -899,4 +899,4 @@
</ItemGroup>
</When>
</Choose>
</Project>
</Project>
2 changes: 1 addition & 1 deletion src/EdIlyin.FSharp.Elm.Core/Json.Decode.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace EdIlyin.FSharp.Elm.Json
namespace EdIlyin.FSharp.Elm.Core.Json

open Chiron
open EdIlyin.FSharp.Elm.Core
Expand Down

0 comments on commit c3c8d46

Please sign in to comment.