Skip to content

Commit

Permalink
rel : migrate to version 6.0 (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi authored Jun 14, 2023
1 parent f6db1d4 commit 5be3f0d
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion ArtList.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.9"
"### Version : 6.0"
]
},
{
Expand Down
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]
## [6.0] - 2023-06-14
### Added
- 6 new font
1. vaporwave
Expand Down Expand Up @@ -2069,7 +2070,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.9...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.0...dev
[6.0]: https://github.com/sepandhaghighi/art/compare/v5.9...v6.0
[5.9]: https://github.com/sepandhaghighi/art/compare/v5.8...v5.9
[5.8]: https://github.com/sepandhaghighi/art/compare/v5.7...v5.8
[5.7]: https://github.com/sepandhaghighi/art/compare/v5.6...v5.7
Expand Down
2 changes: 1 addition & 1 deletion DecorList.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.9"
"### Version : 6.0"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion FontList.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Version : 5.9"
"### Version : 6.0"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
### PyPI

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

### Source code
- Download [Version 5.9](https://github.com/sepandhaghighi/art/archive/v5.9.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 6.0](https://github.com/sepandhaghighi/art/archive/v6.0.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- `pip install .`

### Conda
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 = "5.9" # pragma: no cover
ART_VERSION = "6.0" # 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 @@ -4422,11 +4422,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/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "art" %}
{% set version = "5.9" %}
{% set version = "6.0" %}

package:
name: {{ name|lower }}
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 = "5.9"
VERSION = "6.0"

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='5.9',
version='6.0',
description='ASCII Art Library For Python',
long_description=read_description(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 5be3f0d

Please sign in to comment.