Skip to content

Commit

Permalink
fix : version updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jun 1, 2019
1 parent 8b2a639 commit df406e5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +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.30] - 2019-06-01
## [0.35] - 2019-06-01
### Added
- `version_check.py`
- `CODE_OF_CONDUCT.md`
Expand Down Expand Up @@ -64,8 +64,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.30...dev
[0.30]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.30
[Unreleased]: https://github.com/Moduland/Orangetool/compare/v0.35...dev
[0.35]: https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
[0.25]: https://github.com/Moduland/Orangetool/compare/v0.24...v0.25
[0.24]: https://github.com/Moduland/Orangetool/compare/v0.23...v0.24
[0.23]: https://github.com/Moduland/Orangetool/compare/v0.22...v0.23
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ By [Moduland Co](http://www.moduland.ir)

## Installation
### Source Code
- Download [Version 0.30](https://github.com/moduland/Orangetool/archive/v0.30.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/dev.zip)
- Download [Version 0.35](https://github.com/moduland/Orangetool/archive/v0.35.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.30` or `pip install orangetool==0.30` (Need root access)
- `pip3 install orangetool==0.35` or `pip install orangetool==0.35` (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_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from art import tprint
ip_pattern = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
api_1 = "http://ipinfo.io/ip"
VERSION = "0.30"
VERSION = "0.35"
UPDATE_URL = "http://www.orangetool.ir/version"


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.30',
version='0.35',
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.30',
download_url='https://github.com/Moduland/Orangetool/tarball/v0.35',
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.30"
VERSION = "0.35"


SETUP_ITEMS = [
Expand Down

0 comments on commit df406e5

Please sign in to comment.