Skip to content

Commit

Permalink
rel : migrate to version 4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Mar 26, 2020
1 parent 59abb40 commit e8a1c94
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 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]
## [4.6] - 2020-03-30
### Added
- `NON_ASCII_ARTS` list
- `decor_dic.py` file
Expand Down Expand Up @@ -1413,7 +1414,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- 1-Line art
- CLI commands

[Unreleased]: https://github.com/sepandhaghighi/art/compare/v4.5...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v4.6...dev
[4.6]: https://github.com/sepandhaghighi/art/compare/v4.5...v4.6
[4.5]: https://github.com/sepandhaghighi/art/compare/v4.4...v4.5
[4.4]: https://github.com/sepandhaghighi/art/compare/v4.3...v4.4
[4.3]: https://github.com/sepandhaghighi/art/compare/v4.2...v4.3
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
⚠️ **PyPI** support of these versions will be removed in a **future release**

### Source code
- Download [Version 4.5](https://github.com/sepandhaghighi/art/archive/v4.5.zip) or [Latest Source ](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 4.6](https://github.com/sepandhaghighi/art/archive/v4.6.zip) or [Latest Source ](https://github.com/sepandhaghighi/art/archive/dev.zip)
- `python3 setup.py install` or `python setup.py install` (Need root access)

### PyPI


- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip install art==4.5` or `pip3 install art==4.5` (Need root access)
- `pip install art==4.6` or `pip3 install art==4.6` (Need root access)

* Note : On `--upgrade` error install latest version of `setuptools` : `pip install setuptools` and retry

Expand All @@ -23,7 +23,7 @@

### Easy install

- Run `easy_install "art==4.5"` (Need root access)
- Run `easy_install "art==4.6"` (Need root access)

### MATLAB

Expand Down
2 changes: 1 addition & 1 deletion art/art_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .decor_dic import *
from .art_dic import *

ART_VERSION = "4.5" # pragma: no cover
ART_VERSION = "4.6" # pragma: no cover
FONT_SMALL_THRESHOLD = 50 # pragma: no cover
FONT_MEDIUM_THRESHOLD = 100 # pragma: no cover
FONT_LARGE_THRESHOLD = 200 # pragma: no cover
Expand Down
10 changes: 5 additions & 5 deletions art/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4345,11 +4345,11 @@
\__,_||_| \__|
<BLANKLINE>
<BLANKLINE>
_ _ ____
__ __| || | | ___|
\ \ / /| || |_ |___ \
\ V / |__ _| _ ___) |
\_/ |_| (_)|____/
_ _ __
__ __| || | / /_
\ \ / /| || |_ | '_ \
\ V / |__ _| _ | (_) |
\_/ |_| (_) \___/
<BLANKLINE>
<BLANKLINE>
ASCII art is also known as "computer text art".
Expand Down
2 changes: 1 addition & 1 deletion otherfile/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from art.art_param import *

Failed = 0
VERSION = "4.5"
VERSION = "4.6"

README_ITEMS = ['<td align="center">{0}</td>'.format(str(FONT_COUNTER)),
'<img src="https://img.shields.io/badge/Art List-{0}-orange.svg">'.format(str(ART_COUNTER)),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def read_description():
setup(
name='art',
packages=['art'],
version='4.5',
version='4.6',
description='ASCII Art Library For Python',
long_description=read_description(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit e8a1c94

Please sign in to comment.