Skip to content

Commit ddfd673

Browse files
Version 6.3 (#279)
* rel : migrate to version 6.3 * rel : notebooks updated for version 6.3
1 parent e0407c4 commit ddfd673

File tree

12 files changed

+21
-18
lines changed

12 files changed

+21
-18
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
label: Art version
8686
description: Which version of Art are you using?
8787
options:
88+
- Art 6.3
8889
- Art 6.2
8990
- Art 6.1
9091
- Art 6.0

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 : 6.2"
14+
"### Version : 6.3"
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.3] - 2024-09-19
89
### Added
910
- `data` directory
1011
- `tests` directory
@@ -2130,7 +2131,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
21302131
- 1-Line art
21312132
- CLI commands
21322133

2133-
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.2...dev
2134+
[Unreleased]: https://github.com/sepandhaghighi/art/compare/v6.3...dev
2135+
[6.3]: https://github.com/sepandhaghighi/art/compare/v6.2...v6.3
21342136
[6.2]: https://github.com/sepandhaghighi/art/compare/v6.1...v6.2
21352137
[6.1]: https://github.com/sepandhaghighi/art/compare/v6.0...v6.1
21362138
[6.0]: https://github.com/sepandhaghighi/art/compare/v5.9...v6.0

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 : 6.2"
14+
"### Version : 6.3"
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 : 6.2"
14+
"### Version : 6.3"
1515
]
1616
},
1717
{

INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Installation
1+
## Installation
22

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

@@ -10,10 +10,10 @@
1010
### PyPI
1111

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

1515
### Source code
16-
- Download [Version 6.2](https://github.com/sepandhaghighi/art/archive/v6.2.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
16+
- Download [Version 6.3](https://github.com/sepandhaghighi/art/archive/v6.3.zip) or [Latest Source](https://github.com/sepandhaghighi/art/archive/dev.zip)
1717
- `pip install .`
1818

1919
### Conda

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 6.2 | :white_check_mark: |
8-
| < 6.2 | :x: |
7+
| 6.3 | :white_check_mark: |
8+
| < 6.3 | :x: |
99

1010
## Reporting a vulnerability
1111

art/params.py

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

9-
ART_VERSION = "6.2" # pragma: no cover
9+
ART_VERSION = "6.3" # 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/tests/test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4426,11 +4426,11 @@
44264426
\__,_||_| \__|
44274427
<BLANKLINE>
44284428
<BLANKLINE>
4429-
__ ____
4430-
__ __ / /_ |___ \
4431-
\ \ / /| '_ \ __) |
4432-
\ V / | (_) | _ / __/
4433-
\_/ \___/ (_)|_____|
4429+
__ _____
4430+
__ __ / /_ |___ /
4431+
\ \ / /| '_ \ |_ \
4432+
\ V / | (_) | _ ___) |
4433+
\_/ \___/ (_)|____/
44344434
<BLANKLINE>
44354435
<BLANKLINE>
44364436
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 = "6.2" %}
2+
{% set version = "6.3" %}
33

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

0 commit comments

Comments
 (0)