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.45] - 2020-12-22
89### Added
910- ` __main__.py `
1011- ` __version__ ` variable
@@ -80,7 +81,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8081### Added
8182- Some useful scripts for Orangepi/Raspberrypi boards
8283
83- [ Unreleased ] : https://github.com/Moduland/Orangetool/compare/v0.35...dev
84+ [ Unreleased ] : https://github.com/Moduland/Orangetool/compare/v0.45...dev
85+ [ 0.45 ] : https://github.com/Moduland/Orangetool/compare/v0.35...v0.45
8486[ 0.35 ] : https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
8587[ 0.25 ] : https://github.com/Moduland/Orangetool/compare/v0.24...v0.25
8688[ 0.24 ] : https://github.com/Moduland/Orangetool/compare/v0.23...v0.24
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.35 ] ( https://github.com/moduland/Orangetool/archive/v0.35 .zip ) or [ Latest Source ] ( https://github.com/Moduland/Orangetool/archive/dev.zip )
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 )
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.35 ` or ` pip install orangetool==0.35 ` (Need root access)
93+ - ` pip3 install orangetool==0.45 ` or ` pip install orangetool==0.45 ` (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.35 "
4+ ORANGETOOL_VERSION = "0.45 "
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.35 ' ,
32+ version = '0.45 ' ,
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.35 ' ,
39+ download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.45 ' ,
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.35 "
7+ VERSION = "0.45 "
88
99
1010SETUP_ITEMS = [
You can’t perform that action at this time.
0 commit comments