Skip to content

Commit f5c15a4

Browse files
committed
Bump version to 1.0.3
1 parent a65cf14 commit f5c15a4

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.3] - 2021-02-11
6+
7+
### Changed
8+
9+
- Fix to prevent the script from hiding connection errors on subsequent failed attempts.
10+
511
## [1.0.2] - 2021-01-27
612

713
No changes, just a reupload to fix bad Pypi upload of 1.0.1.

scripts/build

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
venv/bin/python setup.py sdist bdist_wheel

scripts/publish

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
venv/bin/python setup.py sdist bdist_wheel && venv/bin/twine upload dist/*

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name ='idasen-controller',
13-
version ='1.0.2',
13+
version ='1.0.3',
1414
author ='Rhys Tyers',
1515
author_email ='',
1616
url ='https://github.com/rhyst/idasen-controller',
@@ -34,4 +34,4 @@
3434
zip_safe = False,
3535
include_package_data = True,
3636
package_data={'': ['example/*']},
37-
)
37+
)

0 commit comments

Comments
 (0)