File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 22this 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 '
You can’t perform that action at this time.
0 commit comments