Skip to content

Commit 35c04ff

Browse files
committed
Bump version to 0.4.0
1 parent 081f486 commit 35c04ff

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
#### 0.4.0 - April 10, 2016
2+
- Added support of anonymous types generations - https://github.com/fsprojects/SwaggerProvider/pull/24
3+
- Added support of recursively dependent type definitions
4+
- Added support of `$refs` in DefinitionProperty - https://github.com/fsprojects/SwaggerProvider/issues/23
5+
- Added support of operations without `operationId`
6+
- Better XML docs
7+
18
#### 0.3.6 - April 2 2016
29
* Updated JSON.NET version up to v8.0.3
310
* Added support of model composition in path's response schema

src/Common/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("SwaggerProvider")>]
55
[<assembly: AssemblyProductAttribute("SwaggerProvider")>]
66
[<assembly: AssemblyDescriptionAttribute("F# Type Provider for Swagger")>]
7-
[<assembly: AssemblyVersionAttribute("0.3.6")>]
8-
[<assembly: AssemblyFileVersionAttribute("0.3.6")>]
7+
[<assembly: AssemblyVersionAttribute("0.4.0")>]
8+
[<assembly: AssemblyFileVersionAttribute("0.4.0")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "0.3.6"
13-
let [<Literal>] InformationalVersion = "0.3.6"
12+
let [<Literal>] Version = "0.4.0"
13+
let [<Literal>] InformationalVersion = "0.4.0"

0 commit comments

Comments
 (0)