Skip to content

Commit

Permalink
Merge pull request #558 from googleads/19.0.1
Browse files Browse the repository at this point in the history
Bump version to 19.0.1 and add support for net8.0
  • Loading branch information
Raibaz committed Mar 19, 2024
2 parents 262b5a1 + 1e051dc commit 14b224e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
19.0.1
======
- Added support for .NET 8.0 in the Google.Ads.GoogleAds project: it was left out in the previous
release.

19.0.0
======
- Removed support for .NET 5.0.
Expand Down
Expand Up @@ -16,7 +16,7 @@
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Condition="!Exists('..\..\..\src\Google.Ads.GoogleAds.csproj')"
Include="Google.Ads.GoogleAds" Version="19.0.0" />
Include="Google.Ads.GoogleAds" Version="19.0.1" />
<PackageReference Condition="!Exists('..\..\..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')"
Include="Google.Ads.GoogleAds.Extensions" Version="2.0.0" />

Expand Down
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>
<ItemGroup>
<!-- Include local projects over nuget dependencies if available -->
<PackageReference Condition="!Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="Google.Ads.GoogleAds" Version="19.0.0" />
<PackageReference Condition="!Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="Google.Ads.GoogleAds" Version="19.0.1" />
<ProjectReference Condition="Exists('..\src\Google.Ads.GoogleAds.csproj')" Include="..\src\Google.Ads.GoogleAds.csproj" />
<PackageReference Condition="!Exists('..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')" Include="Google.Ads.GoogleAds.Extensions" Version="2.0.0" />
<ProjectReference Condition="Exists('..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj')" Include="..\..\Google.Ads.GoogleAds.Extensions\src\Google.Ads.GoogleAds.Extensions.csproj" />
Expand Down
8 changes: 4 additions & 4 deletions Google.Ads.GoogleAds/src/Google.Ads.GoogleAds.csproj
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Title>Google Ads API Dotnet Client Library</Title>
<PackageId>Google.Ads.GoogleAds</PackageId>
<Version>19.0.0</Version>
<Version>19.0.1</Version>
<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>
<PackageReleaseNotes>https://github.com/googleads/google-ads-dotnet/blob/master/ChangeLog</PackageReleaseNotes>
<PackageTags>GoogleAds Google</PackageTags>
Expand All @@ -20,7 +20,7 @@
</PropertyGroup>
<!-- build properties -->
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net472;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net472;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Google.Ads.GoogleAds</AssemblyName>
<RootNamespace>Google.Ads.GoogleAds</RootNamespace>
<SignAssembly>true</SignAssembly>
Expand All @@ -30,8 +30,8 @@
<IncludeSource>true</IncludeSource>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyVersion>19.0.0</AssemblyVersion>
<FileVersion>19.0.0</FileVersion>
<AssemblyVersion>19.0.1</AssemblyVersion>
<FileVersion>19.0.1</FileVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 14b224e

Please sign in to comment.