Skip to content

Commit

Permalink
Version 6.3 (#279)
Browse files Browse the repository at this point in the history
* rel : migrate to version 6.3

* rel : notebooks updated for version 6.3
  • Loading branch information
sepandhaghighi authored Sep 17, 2024
1 parent e0407c4 commit ddfd673
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 18 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: Art version
description: Which version of Art are you using?
options:
- Art 6.3
- Art 6.2
- Art 6.1
- Art 6.0
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.2"
"### Version : 6.3"
]
},
{
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.3] - 2024-09-19
### Added
- `data` directory
- `tests` directory
Expand Down Expand Up @@ -2130,7 +2131,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.2...dev
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.3...dev
[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
[6.0]: https://github.com/sepandhaghighi/art/compare/v5.9...v6.0
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.2"
"### Version : 6.3"
]
},
{
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.2"
"### Version : 6.3"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Installation
## Installation

⚠️ **ART 6.1** is the last version to support **Python 3.5** officially

Expand All @@ -10,10 +10,10 @@
### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip install art==6.2`
- `pip install art==6.3`

### Source code
- Download [Version 6.2](https://github.com/sepandhaghighi/art/archive/v6.2.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
- Download [Version 6.3](https://github.com/sepandhaghighi/art/archive/v6.3.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.2 | :white_check_mark: |
| < 6.2 | :x: |
| 6.3 | :white_check_mark: |
| < 6.3 | :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.2" # pragma: no cover
ART_VERSION = "6.3" # 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 @@ -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.2" %}
{% set version = "6.3" %}

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.2"
VERSION = "6.3"

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

0 comments on commit ddfd673

Please sign in to comment.