Skip to content

Commit d197c3b

Browse files
committed
Merge pull request #61 from Astro03/master
update version to 1.2.0.5 and update NuGet packages
2 parents 2e0a914 + 2b8a8e4 commit d197c3b

6 files changed

+14
-5
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
This driver is an extension of the [Selenium](http://docs.seleniumhq.org/) C# client. It has
44
all the functionalities of the regular driver, but add Appium specific methods on top of this.
55

6+
## v1.2.0.5
7+
Add GetSettings().
8+
Add IgnoreUnimportantViews();
9+
610
## v1.2.0.4
711
Update version since mismatch between NuGet and assembly.
812

RELEASE_NOTES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#Release Notes
22

3+
## 1.2.0.5
4+
- Add GetSettings and IgnoreUnimportantViews methods.
5+
36
## 1.2.0.4
47
- Update version to match assembly and NuGet package
58

appium-dotnet-driver/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion ("1.2.0.4")]
20+
[assembly: AssemblyVersion ("1.2.0.5")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

appium-dotnet-driver/appium-dotnet-driver.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
</Reference>
3535
<Reference Include="System" />
3636
<Reference Include="System.Drawing" />
37-
<Reference Include="WebDriver, Version=2.43.0.0, Culture=neutral, processorArchitecture=MSIL">
37+
<Reference Include="WebDriver, Version=2.43.1.0, Culture=neutral, processorArchitecture=MSIL">
3838
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>$(SolutionDir)\packages\Selenium.WebDriver.2.43.0\lib\net40\WebDriver.dll</HintPath>
39+
<HintPath>$(SolutionDir)\packages\Selenium.WebDriver.2.43.1\lib\net40\WebDriver.dll</HintPath>
4040
</Reference>
4141
</ItemGroup>
4242
<ItemGroup>

appium-dotnet-driver/appium-dotnet-driver.nuspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>Appium.WebDriver</id>
5-
<version>1.2.0.4</version>
5+
<version>1.2.0.5</version>
66
<title>Appium Webdriver</title>
77
<authors>Appium Commiters</authors>
88
<owners>Appium Commiters</owners>
@@ -12,6 +12,8 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>Selenium Webdriver extension for Appium.</description>
1414
<releaseNotes>
15+
1.2.0.5
16+
Add GetSettings and IgnoreUnimportantViews methods.
1517
1.2.0.4
1618
Update version due to assembly not matching NuGet.
1719
1.2.0.3

appium-dotnet-driver/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net40" />
4-
<package id="Selenium.WebDriver" version="2.43.0" targetFramework="net40" />
4+
<package id="Selenium.WebDriver" version="2.43.1" targetFramework="net40" />
55
</packages>

0 commit comments

Comments
 (0)