Skip to content

Commit f66c69e

Browse files
Up-version to v0.3.1 (#37)
* Updated version_updater.py - Removed setup.py from updater * Upversioned to 0.3.1
1 parent f4171d2 commit f66c69e

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Once tested, try an [example script from github](https://github.com/JamesPicoTec
3737
- [PicoScope Support (Compatibility)](https://jamespicotech.github.io/pyPicoSDK/dev/current)
3838

3939
## Version Control
40-
pyPicoSDK: 0.3.0
40+
pyPicoSDK: 0.3.1
4141

4242
Docs: 0.1.6

build-tools/version_updater.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ def update_docs():
2121
update_lines('./docs/docs/index.md', 'pyPicoSDK:', f'pyPicoSDK: {package_version}')
2222
update_lines('./docs/docs/index.md', 'Docs:', f'Docs: {docs_version}')
2323

24-
def update_setup():
25-
update_lines('./setup.py', 'version=', (' '*4) + f'version="{package_version}",')
26-
2724
def update_src():
2825
update_lines('./pypicosdk/version.py', 'VERSION', f'VERSION = "{package_version}"')
2926

@@ -36,7 +33,6 @@ def overwrite_readme():
3633

3734
def update_versions():
3835
update_docs()
39-
update_setup()
4036
update_src()
4137
overwrite_readme()
4238

docs/docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Once tested, try an [example script from github](https://github.com/JamesPicoTec
3737
- [PicoScope Support (Compatibility)](https://jamespicotech.github.io/pyPicoSDK/dev/current)
3838

3939
## Version Control
40-
pyPicoSDK: 0.3.0
40+
pyPicoSDK: 0.3.1
4141

4242
Docs: 0.1.6

pypicosdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
VERSION = "0.3.0"
2+
VERSION = "0.3.1"

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Master version file for all scripts.
22
# Update these variables and run a build-tool (which will run version_updater.py)
33
docs_version = "0.1.6"
4-
package_version = "0.3.0"
4+
package_version = "0.3.1"

0 commit comments

Comments
 (0)