Skip to content

Commit a444fe9

Browse files
committed
merged PR for bugFix, and added documentation for distribution, new minor release increment
1 parent 842a7fb commit a444fe9

3 files changed

Lines changed: 47 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.1] - 2020-10-13
11+
12+
### Fixed
13+
- Fixed bug which happened when selecting or moving invalid objects
14+
1015
## [2.0.0] - 2020-10-06
1116

1217
### Added

DISTRIBUTE.txt

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
Distribute simulator on pypi
3+
=============================
4+
5+
build wheel distribution file
6+
-----------------------------
7+
8+
Build a .whl file in subdir pypi/ with the command:
9+
10+
python3 setup.py bdist_wheel -d pypi
11+
12+
To test the .whl file you can install it with:
13+
14+
PATH_TO_MY_WHL=pypi/ev3dev2simulator-2.0.0-py3-none-any.whl
15+
pip3 install $PATH_TO_MY_WHL
16+
17+
upload to pypi
18+
--------------
19+
20+
Credentials and URLs for test and official repos are set in ~/.pypirc.
21+
22+
Test upload
23+
24+
python3 -m twine upload --repository testpypi $PATH_TO_MY_WHL
25+
^^^^
26+
27+
watch result at :
28+
29+
https://test.pypi.org/project/ev3dev2simulator/
30+
31+
Official upload
32+
33+
src: https://packaging.python.org/guides/migrating-to-pypi-org/
34+
35+
python3 -m twine upload --repository pypi $PATH_TO_MY_WHL
36+
^^^^
37+
38+
watch result at :
39+
40+
https://pypi.org/project/ev3dev2simulator/
41+

ev3dev2simulator/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
this file contains the version of the simulator. This is not the same as the ev3dev2 version of the robots simulated.
33
"""
44

5-
__version__ = '2.0.0'
5+
__version__ = '2.0.1'

0 commit comments

Comments
 (0)