Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 19.0.1 and add support for net8.0 #558

Merged
merged 1 commit into from Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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