File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ #### 0.1.1-beta - November 19 2015
2
+ * Supported serialization of basic data types for passing in query
3
+ * Fixed bugs in query builder logic
4
+ * Added support of nice names for provided parameters
5
+ * Added support of JSON serialization for properties with nice names
6
+ * Auto Content-Type: application /json header to POST queries when it is supported
7
+ * Fixed bug in float compilation
8
+ * Added communication tests for data transferring to the server
9
+
1
10
#### 0.1.0-beta - November 17 2015
2
11
* Improved speed: Added caching for generated types
3
12
* Improved support of Swashbuckle generated schemas
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ open System.Reflection
4
4
[<assembly: AssemblyTitleAttribute( " SwaggerProvider" ) >]
5
5
[<assembly: AssemblyProductAttribute( " SwaggerProvider" ) >]
6
6
[<assembly: AssemblyDescriptionAttribute( " Type provider for Swagger.io" ) >]
7
- [<assembly: AssemblyVersionAttribute( " 0.1.0 " ) >]
8
- [<assembly: AssemblyFileVersionAttribute( " 0.1.0 " ) >]
7
+ [<assembly: AssemblyVersionAttribute( " 0.1.1 " ) >]
8
+ [<assembly: AssemblyFileVersionAttribute( " 0.1.1 " ) >]
9
9
do ()
10
10
11
11
module internal AssemblyVersionInformation =
12
- let [<Literal>] Version = " 0.1.0 "
12
+ let [<Literal>] Version = " 0.1.1 "
You can’t perform that action at this time.
0 commit comments