Skip to content

Commit

Permalink
release notes and paket template
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechner committed Mar 26, 2017
1 parent e185165 commit 3a94271
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

#### 2.0.1-beta March 15 2016
* improve native types supports in path

#### 2.0.0 March 15 2016
* PR #15 Swagger json generated by default should be valid
* PR #16 Add support of Suave 2.0.X
Expand Down
4 changes: 2 additions & 2 deletions Suave.Swagger.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
# Visual Studio 15
VisualStudioVersion = 15.0.26228.9
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B98-5CED-492C-A5B7-A5B4F73CF142}"
ProjectSection(SolutionItems) = preProject
Expand Down
9 changes: 4 additions & 5 deletions paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors
owners
rflechner
description
This is a proof of concept to document Suave web services with Swagger. Swagger UI is embedded in resources and a WebPart serving it is automatically added.
Document your Suave web services with Swagger. Swagger UI is embedded in resources and a WebPart serving it is automatically added.
projectUrl
http://github.com/rflechner/Suave.Swagger
iconUrl
Expand All @@ -25,8 +25,7 @@ files
frameworkAssemblies
System.Xml
dependencies
FSharp.Core
suave
Newtonsoft.Json
SharpZipLib
FSharp.Core >= 4.0.0.1
suave >= 2.0.2
Newtonsoft.Json >= 9.0.1

8 changes: 4 additions & 4 deletions src/Suave.Swagger/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Suave.Swagger")>]
[<assembly: AssemblyProductAttribute("Suave.Swagger")>]
[<assembly: AssemblyDescriptionAttribute("This is an extension for Suave.io with some REST tools and Swagger documentation helpers")>]
[<assembly: AssemblyVersionAttribute("1.0.1")>]
[<assembly: AssemblyFileVersionAttribute("1.0.1")>]
[<assembly: AssemblyVersionAttribute("2.0.1")>]
[<assembly: AssemblyFileVersionAttribute("2.0.1")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Suave.Swagger"
let [<Literal>] AssemblyProduct = "Suave.Swagger"
let [<Literal>] AssemblyDescription = "This is an extension for Suave.io with some REST tools and Swagger documentation helpers"
let [<Literal>] AssemblyVersion = "1.0.1"
let [<Literal>] AssemblyFileVersion = "1.0.1"
let [<Literal>] AssemblyVersion = "2.0.1"
let [<Literal>] AssemblyFileVersion = "2.0.1"

0 comments on commit 3a94271

Please sign in to comment.