Skip to content

Commit 60c07e2

Browse files
rel : migrate to version 0.50
1 parent f244570 commit 60c07e2

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.50] - 2021-01-01
89
### Added
910
- `network_control`, `network_enable` and `network_disable` functions
1011
### Changed
@@ -86,7 +87,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8687
### Added
8788
- Some useful scripts for Orangepi/Raspberrypi boards
8889

89-
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.45...dev
90+
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.50...dev
91+
[0.50]: https://github.com/Moduland/Orangetool/compare/v0.45...v0.50
9092
[0.45]: https://github.com/Moduland/Orangetool/compare/v0.35...v0.45
9193
[0.35]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
9294
[0.25]: https://github.com/Moduland/Orangetool/compare/v0.24...v0.25

README.md

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

8585
## Installation
8686
### Source Code
87-
- Download [Version 0.45](https://github.com/moduland/Orangetool/archive/v0.45.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/dev.zip)
87+
- Download [Version 0.50](https://github.com/moduland/Orangetool/archive/v0.50.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/dev.zip)
8888
- `pip3 install -r requirements.txt` or `pip install -r requirements.txt` (Need root access)
8989
- `python3 setup.py install` or `python setup.py install`
9090
### PyPI
9191

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

orangetool/orangetool_params.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""Orangetool params."""
33

4-
ORANGETOOL_VERSION = "0.45"
4+
ORANGETOOL_VERSION = "0.50"
55
UPDATE_URL = "http://www.orangetool.ir/version"
66
IP_PATTERN = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
77
GLOBAL_IP_API_1 = "http://ipinfo.io/ip"

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.45',
32+
version='0.50',
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.45',
39+
download_url='https://github.com/Moduland/Orangetool/tarball/v0.50',
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.45"
7+
VERSION = "0.50"
88

99

1010
SETUP_ITEMS = [

0 commit comments

Comments
 (0)