Skip to content

Commit

Permalink
incremented version to 2.0.0a1; preparing for release; current limita…
Browse files Browse the repository at this point in the history
…tions: - no test coverage; no hooks (and so no screenshots in error messages); no temporal support for 1.0.0 aliases for some methods;
  • Loading branch information
yashaka committed Dec 28, 2019
1 parent 42ee9d2 commit ea86470
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Changelog

## 2.0.0 (todo)
- planned api changes:
- all.first() to all.first
## 2.0.0a1 (to be released on 28.12.2019)
- complete reincarnation of Selene :) so far:
- no test coverage;
- no hooks (and so no screenshots in error messages);
- no temporal support for 1.0.0 aliases for some methods
- will be added as deprecated and kept for some time to allow smoother migration

- old implementation of everything still exists in `selene.support.past.*`

## 1.0.1 (released on 28.12.2019)
- no changes; just releasing latest version (before refactoring) as stable

## 1.0.0ax (next from master branch)
- removed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Selene - Concise API for Selenium in Python
(Selenide port in Python)
# Selene - User-oriented Web UI browser tests in Python
(Selenide port to Python)

[![Build Status](https://travis-ci.org/yashaka/selene.svg?branch=master)](https://travis-ci.org/yashaka/selene) [![codecov](https://codecov.io/gh/yashaka/selene/branch/master/graph/badge.svg)](https://codecov.io/gh/yashaka/selene) [![Gitter](https://badges.gitter.im/gitterHQ/gitter.svg)](https://gitter.im/automician/selene)

Expand Down
2 changes: 1 addition & 1 deletion selene/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

VERSION = '1.0.0a16'
VERSION = '2.0.0a1'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from selene import version

description = 'Concise API for selenium in Python + Ajax support + PageObjects (Selenide port from Java to Python)'
description = 'User-oriented browser tests in Python (Selenide port to Python)'
# long_description = 'see http://github.com/yashaka/selene/ for more docs...'

setup(
Expand All @@ -21,10 +21,10 @@
'selene.support',
'selene.support.conditions'],
include_package_data=True,
install_requires=['selenium', 'webdriver_manager', 'future', 'backports.functools_lru_cache', 'six'],
install_requires=['selenium==3.141.0', 'webdriver_manager', 'future', 'backports.functools_lru_cache', 'six'],
platforms='any',
zip_safe=False,
keywords=['testing', 'selenium==3.141.0', 'selenide', 'browser', 'pageobject', 'widget', 'wrapper'],
keywords=['testing', 'selenium', 'selenide', 'browser', 'pageobject', 'widget', 'wrapper'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit ea86470

Please sign in to comment.