Skip to content

Commit 5be3f0d

Browse files
rel : migrate to version 6.0 (#236)
1 parent f6db1d4 commit 5be3f0d

File tree

10 files changed

+17
-15
lines changed

10 files changed

+17
-15
lines changed

ArtList.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"### Version : 5.9"
14+
"### Version : 6.0"
1515
]
1616
},
1717
{

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [6.0] - 2023-06-14
89
### Added
910
- 6 new font
1011
1. vaporwave
@@ -2069,7 +2070,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
20692070
- 1-Line art
20702071
- CLI commands
20712072

2072-
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v5.9...dev
2073+
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.0...dev
2074+
[6.0]: https://github.com/sepandhaghighi/art/compare/v5.9...v6.0
20732075
[5.9]: https://github.com/sepandhaghighi/art/compare/v5.8...v5.9
20742076
[5.8]: https://github.com/sepandhaghighi/art/compare/v5.7...v5.8
20752077
[5.7]: https://github.com/sepandhaghighi/art/compare/v5.6...v5.7

DecorList.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"### Version : 5.9"
14+
"### Version : 6.0"
1515
]
1616
},
1717
{

FontList.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"### Version : 5.9"
14+
"### Version : 6.0"
1515
]
1616
},
1717
{

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
### PyPI
99

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

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

1717
### Conda

art/art_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .decor_dic import *
77
from .art_dic import *
88

9-
ART_VERSION = "5.9" # pragma: no cover
9+
ART_VERSION = "6.0" # pragma: no cover
1010
FONT_SMALL_THRESHOLD = 50 # pragma: no cover
1111
FONT_MEDIUM_THRESHOLD = 100 # pragma: no cover
1212
FONT_LARGE_THRESHOLD = 200 # pragma: no cover

art/test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4422,11 +4422,11 @@
44224422
\__,_||_| \__|
44234423
<BLANKLINE>
44244424
<BLANKLINE>
4425-
____ ___
4426-
__ __| ___| / _ \
4427-
\ \ / /|___ \ | (_) |
4428-
\ V / ___) | _ \__, |
4429-
\_/ |____/ (_) /_/
4425+
__ ___
4426+
__ __ / /_ / _ \
4427+
\ \ / /| '_ \ | | | |
4428+
\ V / | (_) | _ | |_| |
4429+
\_/ \___/ (_) \___/
44304430
<BLANKLINE>
44314431
<BLANKLINE>
44324432
ASCII art is also known as "computer text art".

otherfile/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "art" %}
2-
{% set version = "5.9" %}
2+
{% set version = "6.0" %}
33

44
package:
55
name: {{ name|lower }}

otherfile/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from art.art_param import *
77

88
Failed = 0
9-
VERSION = "5.9"
9+
VERSION = "6.0"
1010

1111
README_ITEMS = ['<td align="center">{0}</td>'.format(str(FONT_COUNTER)),
1212
'<img src="https://img.shields.io/badge/Art List-{0}-orange.svg">'.format(str(ART_COUNTER)),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read_description():
3535
setup(
3636
name='art',
3737
packages=['art'],
38-
version='5.9',
38+
version='6.0',
3939
description='ASCII Art Library For Python',
4040
long_description=read_description(),
4141
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)