Skip to content

Commit 14b224e

Browse files
authored
Merge pull request #558 from googleads/19.0.1
Bump version to 19.0.1 and add support for net8.0
2 parents 262b5a1 + 1e051dc commit 14b224e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
19.0.1
2+
======
3+
- Added support for .NET 8.0 in the Google.Ads.GoogleAds project: it was left out in the previous
4+
release.
5+
16
19.0.0
27
======
38
- Removed support for .NET 5.0.

Google.Ads.GoogleAds/examples/Authentication/AuthenticateInAspNetCoreApplication/AuthenticateInAspNetCoreApplication.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<ItemGroup>
1717
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1818
<PackageReference Condition="!Exists('..\..\..\src\Google.Ads.GoogleAds.csproj')"
19-
Include="Google.Ads.GoogleAds" Version="19.0.0" />
19+
Include="Google.Ads.GoogleAds" Version="19.0.1" />
2020
<PackageReference Condition="!Exists('..\..\..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')"
2121
Include="Google.Ads.GoogleAds.Extensions" Version="2.0.0" />
2222

Google.Ads.GoogleAds/examples/Google.Ads.GoogleAds.Examples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535
<ItemGroup>
3636
<!-- Include local projects over nuget dependencies if available -->
37-
<PackageReference Condition="!Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="Google.Ads.GoogleAds" Version="19.0.0" />
37+
<PackageReference Condition="!Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="Google.Ads.GoogleAds" Version="19.0.1" />
3838
<ProjectReference Condition="Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="..\src\Google.Ads.GoogleAds.csproj" />
3939
<PackageReference Condition="!Exists('..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')" Include="Google.Ads.GoogleAds.Extensions" Version="2.0.0" />
4040
<ProjectReference Condition="Exists('..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')" Include="..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj" />

Google.Ads.GoogleAds/src/Google.Ads.GoogleAds.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Title>Google Ads API Dotnet Client Library</Title>
55
<PackageId>Google.Ads.GoogleAds</PackageId>
6-
<Version>19.0.0</Version>
6+
<Version>19.0.1</Version>
77
<Description>This library provides you with functionality to access the Google Ads API. The Google Ads API is the modern programmatic interface to Google Ads and the next generation of the AdWords API. See https://developers.google.com/google-ads/api to learn more about Google Ads API.</Description>
88
<PackageReleaseNotes>https://github.com/googleads/google-ads-dotnet/blob/master/ChangeLog</PackageReleaseNotes>
99
<PackageTags>GoogleAds Google</PackageTags>
@@ -20,7 +20,7 @@
2020
</PropertyGroup>
2121
<!-- build properties -->
2222
<PropertyGroup>
23-
<TargetFrameworks>netstandard2.1;net472;net6.0</TargetFrameworks>
23+
<TargetFrameworks>netstandard2.1;net472;net6.0;net8.0</TargetFrameworks>
2424
<AssemblyName>Google.Ads.GoogleAds</AssemblyName>
2525
<RootNamespace>Google.Ads.GoogleAds</RootNamespace>
2626
<SignAssembly>true</SignAssembly>
@@ -30,8 +30,8 @@
3030
<IncludeSource>true</IncludeSource>
3131
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3232
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
33-
<AssemblyVersion>19.0.0</AssemblyVersion>
34-
<FileVersion>19.0.0</FileVersion>
33+
<AssemblyVersion>19.0.1</AssemblyVersion>
34+
<FileVersion>19.0.1</FileVersion>
3535
<LangVersion>latest</LangVersion>
3636
</PropertyGroup>
3737
<ItemGroup>

0 commit comments

Comments
 (0)