Skip to content

Commit ad1fba7

Browse files
committed
Merge pull request #76 from Astro03/master
prep for new release version 1.2.0.8
2 parents 4d62709 + 1b7335b commit ad1fba7

File tree

4 files changed

+9
-35
lines changed

4 files changed

+9
-35
lines changed

README.md

+1-31
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,6 @@
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.7
7-
Improved namespaces.
8-
Tests fixed.
9-
Redesigned methods and interfaces.
10-
Separate android and ios drivers.
11-
12-
## v1.2.0.6
13-
Update NuGet packages - fixes a locator strategy bug.
14-
15-
## v1.2.0.5
16-
Add GetSettings().
17-
Add IgnoreUnimportantViews();
18-
19-
## v1.2.0.4
20-
Update version since mismatch between NuGet and assembly.
21-
22-
## v1.2.0.3
23-
Update version just for NuGet package.
24-
25-
## v1.2.0.2
26-
Add IsLocked method.
27-
Update Packages.
28-
Add Start Activity.
29-
30-
## v1.2.0.1
31-
32-
Breaking Changes: The TouchAction/MultiAction functionalities has been rewritten according
33-
to the spec [here](https://dvcs.w3.org/hg/webdriver/raw-file/default/webdriver-spec.html#touch-gestures).
34-
Please refer to doc below and sample for more information.
35-
366
## NuGet
377

388
NuGet Package: [](http://www.nuget.org/packages/Appium.WebDriver/)
@@ -146,7 +116,7 @@ m.Perform();
146116

147117

148118
### To Release a New Version
149-
- update assemblyInfo.cs, README.md, RELEASE_NOTES.md, and appium-dotnet-driver.nuspec with new new version number and release details, then check it in
119+
- update assemblyInfo.cs, RELEASE_NOTES.md, and appium-dotnet-driver.nuspec with new new version number and release details, then check it in
150120
- pull new code
151121
- `Rebuild All` with `Release` target.
152122
- `NuGet pack appium-dotnet-driver.nuspec`

RELEASE_NOTES.md

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

3+
## 1.2.0.8
4+
- Fix and add tests for Hide Keyboard
5+
36
## 1.2.0.7
47
- Improved namespaces.
5-
- Fixed Tests
8+
- Fixed tests
69
- Redesigned methods and interfaces.
710
- Separate android and ios drivers.
811

appium-dotnet-driver/Properties/AssemblyInfo.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32

43
// Information about this assembly is defined by the following attributes.
54
// Change them to the values specific to your project.
@@ -17,7 +16,7 @@
1716
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1817
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1918

20-
[assembly: AssemblyVersion ("1.2.0.7")]
19+
[assembly: AssemblyVersion ("1.2.0.8")]
2120

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

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.7</version>
5+
<version>1.2.0.8</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.8
16+
Fix/Test for hide keyboard.
1517
1.2.0.7
1618
Separate android and ios drivers, improved namespaces, fixed tests, and redesigned methods and interfaces
1719
1.2.0.6

0 commit comments

Comments
 (0)