Skip to content

Commit 05a6fd8

Browse files
committed
in setup.py use version number from ev3devcmd/version.py
new version [1.0.2] - 2020-02-28 ### Fixed - fixed mirror and cleanup command for windows; the used sftpclone library didn't handle the backslash used in windows path's correctly, this was fixed by converting all backslashes to forward slashes which python handles correctly on all platforms
1 parent a031efe commit 05a6fd8

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [1.0.2] - 2020-02-28
12+
13+
### Fixed
14+
- fixed mirror and cleanup command for windows; the used sftpclone library
15+
didn't handle the backslash used in windows path's correctly, this was fixed
16+
by converting all backslashes to forward slashes which python handles
17+
correctly on all platforms
18+
1119
## [1.0.1] - 2020-02-07
1220

1321
### Added

ev3devcmd/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
import os.path
33
import sys
44

5+
from ev3devcmd.version import __version__ as pkgversion
56

67
setup(
78
name="ev3devcmd",
8-
version="1.0.1",
9+
version=pkgversion,
910
description="ev3devcmd library and cmdline utility",
1011
long_description="""
1112
ev3devcmd library and cmdline utility

0 commit comments

Comments
 (0)