Skip to content

Commit a3035d1

Browse files
committed
Bump version to 0.18.1
1 parent f0913f3 commit a3035d1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

FSharp.AutoComplete/AssemblyInfo.fs

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("FSharp.AutoComplete")>]
55
[<assembly: AssemblyProductAttribute("FSharp.AutoComplete")>]
66
[<assembly: AssemblyDescriptionAttribute("A command line tool for interfacing with FSharp.Compiler.Service over a pipe.")>]
7-
[<assembly: AssemblyVersionAttribute("0.18.0")>]
8-
[<assembly: AssemblyFileVersionAttribute("0.18.0")>]
7+
[<assembly: AssemblyVersionAttribute("0.18.1")>]
8+
[<assembly: AssemblyFileVersionAttribute("0.18.1")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "0.18.0"
12+
let [<Literal>] Version = "0.18.1"

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### 0.18.1 - 03.09.2015
2+
3+
* Prevent test assemblies from being included in release archives by
4+
avoiding forcing the output directory.
5+
16
#### 0.18.0 - 03.06.2015
27

38
* Adjust for 1-based column indexing - https://github.com/fsharp/FSharp.AutoComplete/pull/13

build.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ let releaseArchive = "fsautocomplete.zip"
2929
let testAssemblies = "**/bin/*/*Tests*.dll"
3030

3131
Target "BuildDebug" (fun _ ->
32-
MSBuildDebug buildDir "Build" ["./FSharp.AutoComplete.sln"]
32+
MSBuildDebug "" "Build" ["./FSharp.AutoComplete.sln"]
3333
|> Log "Build-Output: "
3434
)
3535

3636
Target "BuildRelease" (fun _ ->
37-
MSBuildRelease buildReleaseDir "Build" ["./FSharp.AutoComplete.sln"]
37+
MSBuildRelease "" "Build" ["./FSharp.AutoComplete.sln"]
3838
|> Log "Build-Output: "
3939
)
4040

0 commit comments

Comments
 (0)