Skip to content

Commit db6f65b

Browse files
committed
preparing release
1 parent 3395fd5 commit db6f65b

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

GoogleTestAdapter/Packaging.GTA/VsPackage.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata minClientVersion="2.8">
44
<id>GoogleTestAdapter</id>
5-
<version>0.16.0</version>
5+
<version>0.16.1</version>
66
<title>Google Test Adapter</title>
77
<authors>Christian Soltenborn</authors>
88
<owners>Christian Soltenborn</owners>

GoogleTestAdapter/VsPackage.GTA/ReleaseNotes/History.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ static History()
6666
{ new Version(0, 14, 3), new DateTime(2019, 2, 5) },
6767
{ new Version(0, 14, 4), new DateTime(2019, 2, 24) },
6868
{ new Version(0, 15, 0), new DateTime(2019, 3, 9) },
69-
{ new Version(0, 16, 0), new DateTime(2019, 4, 28) }
69+
{ new Version(0, 16, 0), new DateTime(2019, 4, 28) },
70+
{ new Version(0, 16, 1), new DateTime(2019, 5, 4) }
7071
};
7172
}
7273
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* enhancement: GTA can now also be installed into VS 2019 16.1 Preview 2 ([#286](https://github.com/csoltenborn/GoogleTestAdapter/issues/286), thanks to [Thomas Krogstad](https://github.com/trkrogstad) for report and testing)

GoogleTestAdapter/VsPackage.GTA/VsPackage.GTA.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@
232232
<Content Include="Resources\ReleaseNotes\0.16.0.md">
233233
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
234234
</Content>
235+
<Content Include="Resources\ReleaseNotes\0.16.1.md">
236+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
237+
</Content>
235238
</ItemGroup>
236239
<ItemGroup>
237240
<VSCTCompile Include="GoogleTestExtensionOptionsPage.vsct">

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build status](https://ci.appveyor.com/api/projects/status/8hdgmdy1ogqi606j/branch/master?svg=true)](https://ci.appveyor.com/project/csoltenborn/googletestadapter-u1cxh/branch/master)
22
[![Code coverage](https://codecov.io/gh/csoltenborn/GoogleTestAdapter/branch/master/graph/badge.svg)](https://codecov.io/gh/csoltenborn/GoogleTestAdapter)
3-
[![Visual Studio Marketplace downloads](https://img.shields.io/badge/vs_marketplace-128k-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
3+
[![Visual Studio Marketplace downloads](https://img.shields.io/badge/vs_marketplace-130k-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
44
[![NuGet downloads](https://img.shields.io/nuget/dt/GoogleTestAdapter.svg?colorB=0c7dbe&label=nuget)](https://www.nuget.org/packages/GoogleTestAdapter)
55

66

@@ -52,14 +52,14 @@ Please note that I will see your donations as appreciation of my work so far and
5252

5353
#### Installation
5454

55-
[![Download from Visual Studio Marketplace](https://img.shields.io/badge/vs_marketplace-v0.16.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
55+
[![Download from Visual Studio Marketplace](https://img.shields.io/badge/vs_marketplace-v0.16.1-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
5656
[![Download from NuGet](https://img.shields.io/nuget/vpre/GoogleTestAdapter.svg?colorB=0c7dbe&label=nuget)](https://www.nuget.org/packages/GoogleTestAdapter)
5757
[![Download from GitHub](https://img.shields.io/github/release/csoltenborn/GoogleTestAdapter/all.svg?colorB=0c7dbe&label=github)](https://github.com/csoltenborn/GoogleTestAdapter/releases)
5858

5959
Google Test Adapter can be installed in three ways:
6060

6161
* Install through the Visual Studio Marketplace at *Tools/Extensions and Updates* - search for *Google Test Adapter*.
62-
* Download and launch the VSIX installer from either the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter) or [GitHub](https://github.com/csoltenborn/GoogleTestAdapter/releases/download/v0.16.0/GoogleTestAdapter-0.16.0.vsix)
62+
* Download and launch the VSIX installer from either the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter) or [GitHub](https://github.com/csoltenborn/GoogleTestAdapter/releases/download/v0.16.1/GoogleTestAdapter-0.16.1.vsix)
6363
* Add a NuGet dependency to the [Google test adapter nuget package](https://www.nuget.org/packages/GoogleTestAdapter/) to your Google Test projects. Note, however, that Visual Studio integration is limited this way: VS can discover and run tests, but no debugging, options or toolbar will be available; configuration is only possible through solution config files (see below).
6464

6565
After restarting VS, your tests will be displayed in the Test Explorer at build completion time. If no or not all tests show up, have a look at the [trouble shooting section](#trouble_shooting).

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.16.0.{build}
1+
version: 0.16.1.{build}
22
os:
33
- Visual Studio 2017
44
configuration: Release

0 commit comments

Comments
 (0)