diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 15fb398..0efa74a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +### 0.3.0-beta - 2016/5/22 +* Support active pattern +* Support function type abbreviation +* Support type extension and extension member +* Fix array printing (#57) + ### 0.2.1-beta - 2016/5/15 * Fix loading type constraints of type abbreviation (#66) * Fix FSharpApiSearch.Database.exe option's bugs (#65, #67) diff --git a/src/FSharpApiSearch.Console/AssemblyInfo.fs b/src/FSharpApiSearch.Console/AssemblyInfo.fs index c65cd28..30e1e16 100644 --- a/src/FSharpApiSearch.Console/AssemblyInfo.fs +++ b/src/FSharpApiSearch.Console/AssemblyInfo.fs @@ -4,10 +4,10 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.2.1" - let [] InformationalVersion = "0.2.1" + let [] Version = "0.3.0" + let [] InformationalVersion = "0.3.0" diff --git a/src/FSharpApiSearch.Database/AssemblyInfo.fs b/src/FSharpApiSearch.Database/AssemblyInfo.fs index 74a9495..e7ed604 100644 --- a/src/FSharpApiSearch.Database/AssemblyInfo.fs +++ b/src/FSharpApiSearch.Database/AssemblyInfo.fs @@ -4,10 +4,10 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.2.1" - let [] InformationalVersion = "0.2.1" + let [] Version = "0.3.0" + let [] InformationalVersion = "0.3.0" diff --git a/src/FSharpApiSearch/AssemblyInfo.fs b/src/FSharpApiSearch/AssemblyInfo.fs index 82aa925..540c5d5 100644 --- a/src/FSharpApiSearch/AssemblyInfo.fs +++ b/src/FSharpApiSearch/AssemblyInfo.fs @@ -4,10 +4,10 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.2.1" - let [] InformationalVersion = "0.2.1" + let [] Version = "0.3.0" + let [] InformationalVersion = "0.3.0"