Skip to content

Commit 3674716

Browse files
authored
Merge pull request #565 from googleads/release-V20.0.0-9ead9559517c071ce9cb
Changes for release V20.0.0.
2 parents 222db14 + e6f514b commit 3674716

File tree

1,456 files changed

+3474
-747131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,456 files changed

+3474
-747131
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
20.0.0
2+
======
3+
- Added support for version 16.1 of the Google Ads API.
4+
- Updated code examples:
5+
* VerifyAdvertiserIdentity
6+
* UploadConversionAdjustment
7+
- Removed obsolete code examples:
8+
* AddFlightsFeed
9+
* AddRealEstateFeed
10+
* ApproveMerchantCenterLink
11+
* RejectMerchantCenterLink
12+
* RemoveFlightsFeedItemAttributeValue
13+
* UpdateFlightsFeedItemStringAttributeValue
14+
- Bumped the Google.Api.Gax.Grpc dependency to 4.8.0 and changed the Grpc.Core dependency to depend
15+
directly on it
16+
- Removed support for version 14 of the Google Ads API.
17+
118
19.0.1
219
======
320
- Added support for .NET 8.0 in the Google.Ads.GoogleAds project: it was left out in the previous

Google.Ads.Gax/src/Google.Ads.Gax.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Title>Google Ads GAPIC Extensions Dotnet Client Library</Title>
55
<PackageId>Google.Ads.Gax</PackageId>
6-
<Version>4.0.0</Version>
6+
<Version>4.0.1</Version>
77
<Description>This library provides functionality that makes it easier to work with Generated
88
API Client GAPIC client libraries for Google's Ads APIs.</Description>
99
<PackageReleaseNotes>https://github.com/googleads/google-ads-dotnet/blob/main/ChangeLog</PackageReleaseNotes>
@@ -31,8 +31,8 @@
3131
<IncludeSource>true</IncludeSource>
3232
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3333
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
34-
<AssemblyVersion>4.0.0</AssemblyVersion>
35-
<FileVersion>4.0.0</FileVersion>
34+
<AssemblyVersion>4.0.1</AssemblyVersion>
35+
<FileVersion>4.0.1</FileVersion>
3636
<LangVersion>latest</LangVersion>
3737
</PropertyGroup>
3838
<ItemGroup>
@@ -42,8 +42,8 @@
4242
</ItemGroup>
4343
<ItemGroup>
4444
<PackageReference Include="CommandLineParser" Version="2.9.1" />
45-
<PackageReference Include="Google.Api.Gax.Grpc" Version="4.5.0" />
46-
<PackageReference Include="Google.Api.Gax.Grpc.GrpcCore" Version="3.7.0" />
45+
<PackageReference Include="Google.Api.Gax.Grpc" Version="4.8.0" />
46+
<PackageReference Include="Grpc.Core" Version="2.46.6" />
4747
<PackageReference Include="Google.LongRunning" Version="3.0.0" />
4848
<PackageReference Include="Google.Protobuf" Version="3.25.0" />
4949
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Title>Google Ads API Core Dotnet Client Library</Title>
55
<PackageId>Google.Ads.GoogleAds.Core</PackageId>
6-
<Version>4.0.0</Version>
6+
<Version>4.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>
@@ -30,8 +30,8 @@
3030
<IncludeSource>true</IncludeSource>
3131
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3232
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
33-
<AssemblyVersion>4.0.0</AssemblyVersion>
34-
<FileVersion>4.0.0</FileVersion>
33+
<AssemblyVersion>4.0.1</AssemblyVersion>
34+
<FileVersion>4.0.1</FileVersion>
3535
<LangVersion>latest</LangVersion>
3636
</PropertyGroup>
3737
<ItemGroup>
@@ -40,7 +40,7 @@
4040
<None Include="..\..\logo.png" Pack="true" PackagePath="" />
4141
</ItemGroup>
4242
<ItemGroup>
43-
<PackageReference Condition="!Exists('..\..\Google.Ads.Gax\src\Google.Ads.Gax.csproj')" Include="Google.Ads.Gax" Version="4.0.0" />
43+
<PackageReference Condition="!Exists('..\..\Google.Ads.Gax\src\Google.Ads.Gax.csproj')" Include="Google.Ads.Gax" Version="4.0.1" />
4444
<ProjectReference Condition="Exists('..\..\Google.Ads.Gax\src\Google.Ads.Gax.csproj')" Include="..\..\Google.Ads.Gax\src\Google.Ads.Gax.csproj" />
4545
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
4646
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />

Google.Ads.GoogleAds/examples/AccountManagement/ApproveMerchantCenterLink.cs

-180
This file was deleted.

0 commit comments

Comments
 (0)