Skip to content

Commit

Permalink
Bump version for making a release. (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnashOommen authored Jan 22, 2019
1 parent e9af2f8 commit fe185a3
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 6 deletions.
22 changes: 22 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
0.7.1
=====

- Added support for running code examples from command line.
- Fixed minor errors with the README.md file.
- Made minor fixes to LogEntry tests.
- Fixed https://github.com/googleads/google-ads-dotnet/issues/40
- Fixed https://github.com/googleads/google-ads-dotnet/issues/39
- Fixed https://github.com/googleads/google-ads-dotnet/issues/31
- Fixed https://github.com/googleads/google-ads-dotnet/issues/30
- Fixed https://github.com/googleads/google-ads-dotnet/issues/28
- Fixed https://github.com/googleads/google-ads-dotnet/issues/27
- Fixed https://github.com/googleads/google-ads-dotnet/issues/26
- Added new code examples.
-- AccountManagement/GetAccessibleCustomers.cs
-- Recommendations/DismissRecommendation.cs
-- AccountManagement/CreateCustomer.cs
-- Planning/GenerateKeywordIdeas.cs
-- Planning/AddKeywordPlan.cs
-- Planning/GenerateForecastMetrics.cs
- Fixed a file encoding issue with Targeting/AddCampaignTargetingCriteria.cs example.

0.7.0
=====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
<ProjectReference Condition="Exists('..\..\..\src\Google.Ads.GoogleAds.csproj')" Include="..\..\..\src\Google.Ads.GoogleAds.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Google.Ads.GoogleAds, Version=0.7.0.0, Culture=neutral, PublicKeyToken=52807268f2b614dc, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Google.Ads.GoogleAds.0.7.0\lib\net452\Google.Ads.GoogleAds.dll</HintPath>
<Reference Include="Google.Ads.GoogleAds, Version=0.7.1.0, Culture=neutral, PublicKeyToken=52807268f2b614dc, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Google.Ads.GoogleAds.0.7.1\lib\net452\Google.Ads.GoogleAds.dll</HintPath>
</Reference>
<Reference Include="Google.Api.CommonProtos, Version=1.4.0.0, Culture=neutral, PublicKeyToken=3ec5ea7f18953e47, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Google.Api.CommonProtos.1.4.0\lib\net45\Google.Api.CommonProtos.dll</HintPath>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Google.Ads.GoogleAds" version="0.7.0" targetFramework="net452" />
<package id="Google.Ads.GoogleAds" version="0.7.1" targetFramework="net452" />
<package id="Google.Api.CommonProtos" version="1.4.0" targetFramework="net452" />
<package id="Google.Api.Gax" version="2.5.0" targetFramework="net452" />
<package id="Google.Api.Gax.Grpc" version="2.5.0" targetFramework="net452" />
Expand Down
2 changes: 1 addition & 1 deletion examples/Services/Google.Ads.GoogleAds.Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Ads.GoogleAds" Version="0.7.0" />
<PackageReference Include="Google.Ads.GoogleAds" Version="0.7.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web" />
Expand Down
2 changes: 1 addition & 1 deletion src/Google.Ads.GoogleAds.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Title>Google Ads API Dotnet Client Library</Title>
<PackageId>Google.Ads.GoogleAds</PackageId>
<Version>0.7.0</Version>
<Version>0.7.1</Version>
<Description>This library provides you with functionality to access the Google Ads API.</Description>
<PackageReleaseNotes>https://github.com/googleads/google-ads-dotnet/blob/master/ChangeLog</PackageReleaseNotes>
<PackageTags>GoogleAds Google</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion tests/Google.Ads.GoogleAds.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Moq" Version="4.10.1" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.12.0" />
<PackageReference Include="Google.Ads.GoogleAds" Version="0.7.0" />
<PackageReference Include="Google.Ads.GoogleAds" Version="0.7.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\src\App.config">
Expand Down

0 comments on commit fe185a3

Please sign in to comment.