Skip to content

Commit

Permalink
rel : migrate to version 0.50
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 31, 2020
1 parent f244570 commit 60c07e2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.50] - 2021-01-01
### Added
- `network_control`, `network_enable` and `network_disable` functions
### Changed
Expand Down Expand Up @@ -86,7 +87,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Some useful scripts for Orangepi/Raspberrypi boards

[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.45...dev
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.50...dev
[0.50]: https://github.com/Moduland/Orangetool/compare/v0.45...v0.50
[0.45]: https://github.com/Moduland/Orangetool/compare/v0.35...v0.45
[0.35]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
[0.25]: https://github.com/Moduland/Orangetool/compare/v0.24...v0.25
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ By [Moduland Co](http://www.moduland.ir)

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

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip3 install orangetool==0.45` or `pip install orangetool==0.45` (Need root access)
- `pip3 install orangetool==0.50` or `pip install orangetool==0.50` (Need root access)
<div align="center">
<a href="https://asciinema.org/a/141548" target="_blank"><img src="https://asciinema.org/a/141548.png" /></a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion orangetool/orangetool_params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Orangetool params."""

ORANGETOOL_VERSION = "0.45"
ORANGETOOL_VERSION = "0.50"
UPDATE_URL = "http://www.orangetool.ir/version"
IP_PATTERN = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
GLOBAL_IP_API_1 = "http://ipinfo.io/ip"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ def read_description():
setup(
name='orangetool',
packages=['orangetool'],
version='0.45',
version='0.50',
description='Some useful script for Orangepi/Raspberrypi boards',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Moduland Co',
author_email='[email protected]',
url='https://github.com/Moduland/Orangetool',
download_url='https://github.com/Moduland/Orangetool/tarball/v0.45',
download_url='https://github.com/Moduland/Orangetool/tarball/v0.50',
keywords="orangepi raspberrypi embedded-systems python",
classifiers=[
'Development Status :: 4 - Beta',
Expand Down
2 changes: 1 addition & 1 deletion version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
VERSION = "0.45"
VERSION = "0.50"


SETUP_ITEMS = [
Expand Down

0 comments on commit 60c07e2

Please sign in to comment.