Skip to content

Commit a4480f6

Browse files
committed
Release 2.0.0 #254 Update changelog, version string , use pytest instead of py.test in makefile
1 parent c9e8d75 commit a4480f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 2.0.0rc2
1+
Version 2.0.0
22
-----------------------------------------------------------
33
**Note This is a Major release and might affect your existing Async client implementation. Refer examples on how to use the latest async clients.**
44

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ check: install
3939

4040
test: install
4141
@pip install --quiet --requirement=requirements-tests.txt
42-
@py.test --cov=pymodbus/ --cov-report term-missing
42+
@pytest --cov=pymodbus/ --cov-report term-missing
4343
@coverage report --fail-under=90
4444

4545
tox: install

pymodbus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __str__(self):
4141
return '[%s, version %s]' % (self.package, self.short())
4242

4343

44-
version = Version('pymodbus', 2, 0, 0, "rc2")
44+
version = Version('pymodbus', 2, 0, 0)
4545

4646

4747
version.__name__ = 'pymodbus' # fix epydoc error

0 commit comments

Comments
 (0)