File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55and 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
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22"""Orangetool params."""
33
4- ORANGETOOL_VERSION = "0.45 "
4+ ORANGETOOL_VERSION = "0.50 "
55UPDATE_URL = "http://www.orangetool.ir/version"
66IP_PATTERN = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
77GLOBAL_IP_API_1 = "http://ipinfo.io/ip"
Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ def read_description():
2929setup (
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' ,
37373838 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' ,
Original file line number Diff line number Diff line change 44import sys
55import codecs
66Failed = 0
7- VERSION = "0.45 "
7+ VERSION = "0.50 "
88
99
1010SETUP_ITEMS = [
You can’t perform that action at this time.
0 commit comments