Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 6.1 #261

Merged
merged 2 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,428 changes: 711 additions & 717 deletions ArtList.ipynb

Large diffs are not rendered by default.

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.1] - 2023-09-20
### Changed
- `font_size_splitter` function modified
- `__detailed_return` parameter added to `art` function
Expand Down Expand Up @@ -2083,7 +2084,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/v6.0...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.1...dev
[6.1]: https://github.com/sepandhaghighi/art/compare/v6.0...v6.1
[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
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 : 6.0"
"### Version : 6.1"
]
},
{
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 : 6.0"
"### Version : 6.1"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
### PyPI

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

### Source code
- Download [Version 6.0](https://github.com/sepandhaghighi/art/archive/v6.0.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 6.1](https://github.com/sepandhaghighi/art/archive/v6.1.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 = "6.0" # pragma: no cover
ART_VERSION = "6.1" # 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 @@ -4426,11 +4426,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 = "6.0" %}
{% set version = "6.1" %}

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 = "6.0"
VERSION = "6.1"

README_ITEMS = ['<td id="font_counter">{0}</td>'.format(str(FONT_COUNTER)),
'<img src="https://img.shields.io/badge/Font List-{0}-blue.svg" alt="Font List">'.format(str(FONT_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='6.0',
version='6.1',
description='ASCII Art Library For Python',
long_description=read_description(),
long_description_content_type='text/markdown',
Expand Down
Loading