Skip to content

Commit

Permalink
Specify range for FCS in NuGet (sort of fix #337)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpetricek committed Sep 12, 2015
1 parent af30de4 commit 5d4b440
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.10.3 (12 September, 2015)
- Require compatible F# Compiler Service in Nuspec (fix #337)

## 2.10.2 (12 September, 2015)
- Fix load script (wrap logging setup in try catch properly)

Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Target "NuGet" (fun _ ->
Publish = hasBuildParam "nugetkey"
Dependencies =
[ "FSharpVSPowerTools.Core", GetPackageVersion "packages" "FSharpVSPowerTools.Core" |> RequireExactly
"FSharp.Compiler.Service", GetPackageVersion "packages" "FSharp.Compiler.Service" ] })
"FSharp.Compiler.Service", GetPackageVersion "packages" "FSharp.Compiler.Service" |> sprintf "[%s,1.3]" ] })
"nuget/FSharp.Formatting.nuspec"
NuGet (fun p ->
{ p with
Expand Down
6 changes: 3 additions & 3 deletions src/Common/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Formatting")>]
[<assembly: AssemblyProductAttribute("FSharp.Formatting")>]
[<assembly: AssemblyDescriptionAttribute("A package of libraries for building great F# documentation, samples and blogs")>]
[<assembly: AssemblyVersionAttribute("2.10.2")>]
[<assembly: AssemblyFileVersionAttribute("2.10.2")>]
[<assembly: AssemblyVersionAttribute("2.10.3")>]
[<assembly: AssemblyFileVersionAttribute("2.10.3")>]
[<assembly: AssemblyCopyrightAttribute("Apache 2.0 License")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "2.10.2"
let [<Literal>] Version = "2.10.3"

0 comments on commit 5d4b440

Please sign in to comment.