Skip to content

Commit df406e5

Browse files
fix : version updated
1 parent 8b2a639 commit df406e5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
## [0.30] - 2019-06-01
8+
## [0.35] - 2019-06-01
99
### Added
1010
- `version_check.py`
1111
- `CODE_OF_CONDUCT.md`
@@ -64,8 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6464
### Added
6565
- Some useful scripts for Orangepi/Raspberrypi boards
6666

67-
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.30...dev
68-
[0.30]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.30
67+
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.35...dev
68+
[0.35]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
6969
[0.25]: https://github.com/Moduland/Orangetool/compare/v0.24...v0.25
7070
[0.24]: https://github.com/Moduland/Orangetool/compare/v0.23...v0.24
7171
[0.23]: https://github.com/Moduland/Orangetool/compare/v0.22...v0.23

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ By [Moduland Co](http://www.moduland.ir)
8383

8484
## Installation
8585
### Source Code
86-
- Download [Version 0.30](https://github.com/moduland/Orangetool/archive/v0.30.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/dev.zip)
86+
- Download [Version 0.35](https://github.com/moduland/Orangetool/archive/v0.35.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/dev.zip)
8787
- `pip3 install -r requirements.txt` or `pip install -r requirements.txt` (Need root access)
8888
- `python3 setup.py install` or `python setup.py install`
8989
### PyPI
9090

9191
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
92-
- `pip3 install orangetool==0.30` or `pip install orangetool==0.30` (Need root access)
92+
- `pip3 install orangetool==0.35` or `pip install orangetool==0.35` (Need root access)
9393
<div align="center">
9494
<a href="https://asciinema.org/a/141548" target="_blank"><img src="https://asciinema.org/a/141548.png" /></a>
9595
</div>

orangetool/orangetool_system.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from art import tprint
77
ip_pattern = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
88
api_1 = "http://ipinfo.io/ip"
9-
VERSION = "0.30"
9+
VERSION = "0.35"
1010
UPDATE_URL = "http://www.orangetool.ir/version"
1111

1212

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ def read_description():
2929
setup(
3030
name='orangetool',
3131
packages=['orangetool'],
32-
version='0.30',
32+
version='0.35',
3333
description='Some useful script for Orangepi/Raspberrypi boards',
3434
long_description=read_description(),
3535
long_description_content_type='text/markdown',
3636
author='Moduland Co',
3737
author_email='[email protected]',
3838
url='https://github.com/Moduland/Orangetool',
39-
download_url='https://github.com/Moduland/Orangetool/tarball/v0.30',
39+
download_url='https://github.com/Moduland/Orangetool/tarball/v0.35',
4040
keywords="orangepi raspberrypi embedded-systems python",
4141
classifiers=[
4242
'Development Status :: 4 - Beta',

version_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
VERSION = "0.30"
7+
VERSION = "0.35"
88

99

1010
SETUP_ITEMS = [

0 commit comments

Comments
 (0)