Skip to content

Commit 00549d0

Browse files
committed
v3.3.0
1 parent ccae3ab commit 00549d0

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ Depends upon the Selenium Java client library, available [here](http://docs.sele
1111
<dependency>
1212
<groupId>io.appium</groupId>
1313
<artifactId>java-client</artifactId>
14-
<version>3.2.0</version>
14+
<version>3.3.0</version>
1515
</dependency>
1616
```
1717

18-
It currently depends on selenium-java 2.47.1. If it is necessary to use another version of Selenium then you can configure pom.xml as follows:
18+
It currently depends on selenium-java 2.48.2. If it is necessary to use another version of Selenium then you can configure pom.xml as follows:
1919

2020
```
2121
<dependency>
2222
<groupId>io.appium</groupId>
2323
<artifactId>java-client</artifactId>
24-
<version>3.2.0</version>
24+
<version>3.3.0</version>
2525
<exclusions>
2626
<exclusion>
2727
<groupId>org.seleniumhq.selenium</groupId>
@@ -108,17 +108,19 @@ If you are working on this project and use Intellij Idea, you need to change the
108108
If you are using the Eclipse IDE, make sure you are using verison Luna or later.
109109

110110
##Changelog##
111-
*3.3.0 (still not released)*
111+
*3.3.0*
112112
- updated the dependency on Selenium to version 2.48.2
113113
- bug fix and enhancements of io.appium.java_client.service.local.AppiumDriverLocalService
114114
- FIXED bug which was found and reproduced with Eclipse for Mac OS X. Please read about details here: [#252](https://github.com/appium/java-client/issues/252)
115115
Thanks to [saikrishna321](https://github.com/saikrishna321) for the bug report
116116
- FIXED bug which was found out by [Jonahss](https://github.com/Jonahss). Thanks for the reporting. Details: [#272](https://github.com/appium/java-client/issues/272)
117117
and [#273](https://github.com/appium/java-client/issues/273)
118+
- For starting an appium server using localService, added additional environment variable to specify the location of Node.js binary: NODE_BINARY_PATH
118119
- The ability to set additional output streams was provided
119120
- The additional __startActivity()__ method was added to AndroidDriver. It allows to start activities without the stopping of a target app
120121
Thanks to [deadmoto](https://github.com/deadmoto) for the contribution
121122
- The additional extension of the Page Object design pattern was designed. Please read about details here: [#267](https://github.com/appium/java-client/pull/267)
123+
- New public constructors to AndroidDriver/IOSDriver that allow passing a custom HttpClient.Factory Details: [#276](https://github.com/appium/java-client/pull/278) thanks to [baechul](https://github.com/baechul)
122124

123125
*3.2.0*
124126
- updated the dependency on Selenium to version 2.47.1

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupId>io.appium</groupId>
2323
<artifactId>java-client</artifactId>
24-
<version>3.2.0</version>
24+
<version>3.3.0</version>
2525
<dependencies>
2626
<dependency>
2727
<groupId>com.google.code.gson</groupId>

0 commit comments

Comments
 (0)