Skip to content

Commit

Permalink
rel : migrate to version 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jul 3, 2022
1 parent 468fd90 commit 52e6aff
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 23 deletions.
18 changes: 9 additions & 9 deletions ArtList.ipynb
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.6"
"### Version : 5.7"
]
},
{
Expand Down Expand Up @@ -2044,13 +2044,7 @@
"tie-fighter\n",
"|—O—| \n",
"******************************\n",
"tired\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"tired\n",
"( ͡ಠ ʖ̯ ͡ಠ) \n",
"******************************\n",
"touchy feely\n",
Expand All @@ -2070,7 +2064,13 @@
"******************************\n",
"tripping out\n",
"q(❂‿❂)p \n",
"******************************\n",
"******************************\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trolling\n",
"༼∵༽ ༼⍨༽ ༼⍢༽ ༼⍤༽ \n",
"******************************\n",
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
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]
## [5.7] - 2022-07-06
### Added
- 5 new font
1. fancy144
Expand Down Expand Up @@ -2017,7 +2018,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/v5.6...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v5.7...dev
[5.7]: https://github.com/sepandhaghighi/art/compare/v5.6...v5.7
[5.6]: https://github.com/sepandhaghighi/art/compare/v5.5...v5.6
[5.5]: https://github.com/sepandhaghighi/art/compare/v5.4...v5.5
[5.4]: https://github.com/sepandhaghighi/art/compare/v5.3...v5.4
Expand Down
2 changes: 1 addition & 1 deletion DecorList.ipynb
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.6"
"### Version : 5.7"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion FontList.ipynb
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.6"
"### Version : 5.7"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Expand Up @@ -5,14 +5,14 @@
⚠️ **PyPI** support of these versions will be removed in a **future release**

### Source code
- Download [Version 5.6](https://github.com/sepandhaghighi/art/archive/v5.6.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 5.7](https://github.com/sepandhaghighi/art/archive/v5.7.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==5.6` or `pip3 install art==5.6` (Need root access)
- `pip install art==5.7` or `pip3 install art==5.7` (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==5.6"` (Need root access)
- Run `easy_install "art==5.7"` (Need root access)

### MATLAB

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

ART_VERSION = "5.6" # pragma: no cover
ART_VERSION = "5.7" # 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
Expand Up @@ -4366,11 +4366,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
Expand Up @@ -6,7 +6,7 @@
from art.art_param import *

Failed = 0
VERSION = "5.6"
VERSION = "5.7"

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
Expand Up @@ -35,7 +35,7 @@ def read_description():
setup(
name='art',
packages=['art'],
version='5.6',
version='5.7',
description='ASCII Art Library For Python',
long_description=read_description(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 52e6aff

Please sign in to comment.