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.4 #289

Merged
merged 4 commits into from
Nov 24, 2024
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 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 86,7 @@ body:
label: Art version
description: Which version of Art are you using?
options:
- Art 6.4
- Art 6.3
- Art 6.2
- Art 6.1
Expand Down
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 : 6.3"
"### Version : 6.4"
]
},
{
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.4] - 2024-11-26
### Added
- `line` function
- `lprint` function
Expand Down Expand Up @@ -2145,7 2146,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.3...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.4...dev
[6.4]: https://github.com/sepandhaghighi/art/compare/v6.3...v6.4
[6.3]: https://github.com/sepandhaghighi/art/compare/v6.2...v6.3
[6.2]: https://github.com/sepandhaghighi/art/compare/v6.1...v6.2
[6.1]: https://github.com/sepandhaghighi/art/compare/v6.0...v6.1
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.3"
"### Version : 6.4"
]
},
{
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.3"
"### Version : 6.4"
]
},
{
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.3`
- `pip install art==6.4`

### Source code
- Download [Version 6.3](https://github.com/sepandhaghighi/art/archive/v6.3.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 6.4](https://github.com/sepandhaghighi/art/archive/v6.4.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- `pip install .`

### Conda
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 6.3 | :white_check_mark: |
| < 6.3 | :x: |
| 6.4 | :white_check_mark: |
| < 6.4 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion art/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 6,7 @@
from .data.arts import *
from .data.decorations import *

ART_VERSION = "6.3" # pragma: no cover
ART_VERSION = "6.4" # 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/tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4459,11 4459,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.3" %}
{% set version = "6.4" %}

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.params import *

Failed = 0
VERSION = "6.3"
VERSION = "6.4"

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', 'art.data', 'art.tests'],
version='6.3',
version='6.4',
description='ASCII Art Library For Python',
long_description=read_description(),
long_description_content_type='text/markdown',
Expand Down
Loading