Skip to content

Commit

Permalink
Bump version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-ilyin committed Aug 10, 2017
1 parent 3737b73 commit 3aca59f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
@@ -1,3 +1,6 @@
### 1.1.4
* makes Decode.result decode to Result<_,string>

### 1.1.3
* adds Json.Decode.bool

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/fsharp-edilyin-core-decode.html
Expand Up @@ -572,7 +572,7 @@ <h3>Functions and values</h3>
result decoder
</code>
<div class="tip" id="47">
<strong>Signature:</strong> decoder:Decoder&lt;&#39;?7797,&#39;?7798&gt; -&gt; Decoder&lt;&#39;?7797,Result&lt;&#39;?7798,Error&gt;&gt;<br />
<strong>Signature:</strong> decoder:Decoder&lt;&#39;?7797,&#39;?7798&gt; -&gt; Decoder&lt;&#39;?7797,Result&lt;&#39;?7798,string&gt;&gt;<br />
<strong>Type parameters:</strong> '?7797, '?7798 </div>
</td>
<td class="xmldoc">
Expand Down
4 changes: 4 additions & 0 deletions docs/release-notes.html
Expand Up @@ -32,6 +32,10 @@ <h3 class="muted"><a href="/FSharp.EdIlyin.Core/index.html">FSharp.EdIlyin.Core<
<div class="row">
<div class="span9" id="main">

<h3><a name="1-1-4" class="anchor" href="#1-1-4">1.1.4</a></h3>
<ul>
<li>makes Decode.result decode to Result<_,string></li>
</ul>
<h3><a name="1-1-3" class="anchor" href="#1-1-3">1.1.3</a></h3>
<ul>
<li>adds Json.Decode.bool</li>
Expand Down
8 changes: 4 additions & 4 deletions src/FSharp.EdIlyin.Core/AssemblyInfo.fs
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.EdIlyin.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.EdIlyin.Core")>]
[<assembly: AssemblyDescriptionAttribute("Project has no summmary; update build.fsx")>]
[<assembly: AssemblyVersionAttribute("1.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.1.4")>]
[<assembly: AssemblyFileVersionAttribute("1.1.4")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.EdIlyin.Core"
let [<Literal>] AssemblyProduct = "FSharp.EdIlyin.Core"
let [<Literal>] AssemblyDescription = "Project has no summmary; update build.fsx"
let [<Literal>] AssemblyVersion = "1.1.3"
let [<Literal>] AssemblyFileVersion = "1.1.3"
let [<Literal>] AssemblyVersion = "1.1.4"
let [<Literal>] AssemblyFileVersion = "1.1.4"
let [<Literal>] AssemblyConfiguration = "Release"
4 changes: 2 additions & 2 deletions src/FSharp.EdIlyin.Core/Decode.fs
Expand Up @@ -166,7 +166,7 @@ let resultFromResult =
| Ok x -> Ok x


let result decoder = run decoder >> Ok |> fromFunction
let result decoder = decode decoder >> Ok |> fromFunction


let errorMessage errorMessage = ErrorMessage errorMessage |> Error
Expand Down Expand Up @@ -200,7 +200,7 @@ let orElse decoder2 decoder1 =
|> andThen
(function
| Error _ -> decoder2
| Ok v -> Ok v |> fromDecodeResult
| Ok v -> Ok v |> fromResult
)


Expand Down
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -96,4 +96,4 @@
<Paket>True</Paket>
</Reference>
</ItemGroup>
</Project>
</Project>

0 comments on commit 3aca59f

Please sign in to comment.