Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-tihon committed Apr 10, 2016
1 parent 081f486 commit 35c04ff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#### 0.4.0 - April 10, 2016
- Added support of anonymous types generations - https://github.com/fsprojects/SwaggerProvider/pull/24
- Added support of recursively dependent type definitions
- Added support of `$refs` in DefinitionProperty - https://github.com/fsprojects/SwaggerProvider/issues/23
- Added support of operations without `operationId`
- Better XML docs

#### 0.3.6 - April 2 2016
* Updated JSON.NET version up to v8.0.3
* Added support of model composition in path's response schema
Expand Down
8 changes: 4 additions & 4 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("SwaggerProvider")>]
[<assembly: AssemblyProductAttribute("SwaggerProvider")>]
[<assembly: AssemblyDescriptionAttribute("F# Type Provider for Swagger")>]
[<assembly: AssemblyVersionAttribute("0.3.6")>]
[<assembly: AssemblyFileVersionAttribute("0.3.6")>]
[<assembly: AssemblyVersionAttribute("0.4.0")>]
[<assembly: AssemblyFileVersionAttribute("0.4.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "0.3.6"
let [<Literal>] InformationalVersion = "0.3.6"
let [<Literal>] Version = "0.4.0"
let [<Literal>] InformationalVersion = "0.4.0"

0 comments on commit 35c04ff

Please sign in to comment.