Skip to content

Commit

Permalink
Fixed FSharp.Core dependency to allow newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vsapronov committed Dec 1, 2017
1 parent 0384aed commit bc9a3f0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions FSharp.Json.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
ProjectSection(SolutionItems) = preProject
build.fsx = build.fsx
paket.dependencies = paket.dependencies
paket.lock = paket.lock
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
Expand Down
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 0.3.1
* Fixed FSharp.Core dependency to allow newer versions

#### 0.3
* Fix for tuples containing option types
* Support for char type
Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ source https://nuget.org/api/v2
# To increase the minimum assumed F# version to F# 4.1, change to
# nuget FSharp.Core ~> 4.1.0 redirects: force

nuget FSharp.Core ~> 4.0.0.1 redirects: force
nuget FSharp.Core >= 4.0.0.1 redirects: force

group Build
source https://nuget.org/api/v2
Expand Down
8 changes: 4 additions & 4 deletions src/FSharp.Json/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Json")>]
[<assembly: AssemblyProductAttribute("FSharp.Json")>]
[<assembly: AssemblyDescriptionAttribute("F# JSON Reflection based serialization library")>]
[<assembly: AssemblyVersionAttribute("0.3")>]
[<assembly: AssemblyFileVersionAttribute("0.3")>]
[<assembly: AssemblyVersionAttribute("0.3.1")>]
[<assembly: AssemblyFileVersionAttribute("0.3.1")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Json"
let [<Literal>] AssemblyProduct = "FSharp.Json"
let [<Literal>] AssemblyDescription = "F# JSON Reflection based serialization library"
let [<Literal>] AssemblyVersion = "0.3"
let [<Literal>] AssemblyFileVersion = "0.3"
let [<Literal>] AssemblyVersion = "0.3.1"
let [<Literal>] AssemblyFileVersion = "0.3.1"
let [<Literal>] AssemblyConfiguration = "Release"

0 comments on commit bc9a3f0

Please sign in to comment.