diff --git a/CHANGELOG.md b/CHANGELOG.md index ec2178e4..d7fdf40c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] +## [4.6] - 2020-03-30 ### Added - `NON_ASCII_ARTS` list - `decor_dic.py` file @@ -1413,7 +1414,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/v4.5...dev +[Unreleased]: https://github.com/sepandhaghighi/art/compare/v4.6...dev +[4.6]: https://github.com/sepandhaghighi/art/compare/v4.5...v4.6 [4.5]: https://github.com/sepandhaghighi/art/compare/v4.4...v4.5 [4.4]: https://github.com/sepandhaghighi/art/compare/v4.3...v4.4 [4.3]: https://github.com/sepandhaghighi/art/compare/v4.2...v4.3 diff --git a/INSTALL.md b/INSTALL.md index 82fc3652..8676be55 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,14 +5,14 @@ ⚠️ **PyPI** support of these versions will be removed in a **future release** ### Source code -- Download [Version 4.5](https://github.com/sepandhaghighi/art/archive/v4.5.zip) or [Latest Source ](https://github.com/sepandhaghighi/art/archive/dev.zip) +- Download [Version 4.6](https://github.com/sepandhaghighi/art/archive/v4.6.zip) or [Latest Source ](https://github.com/sepandhaghighi/art/archive/dev.zip) - `python3 setup.py install` or `python setup.py install` (Need root access) ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- `pip install art==4.5` or `pip3 install art==4.5` (Need root access) +- `pip install art==4.6` or `pip3 install art==4.6` (Need root access) * Note : On `--upgrade` error install latest version of `setuptools` : `pip install setuptools` and retry @@ -23,7 +23,7 @@ ### Easy install -- Run `easy_install "art==4.5"` (Need root access) +- Run `easy_install "art==4.6"` (Need root access) ### MATLAB diff --git a/art/art_param.py b/art/art_param.py index f29aa044..5639a377 100644 --- a/art/art_param.py +++ b/art/art_param.py @@ -6,7 +6,7 @@ from .decor_dic import * from .art_dic import * -ART_VERSION = "4.5" # pragma: no cover +ART_VERSION = "4.6" # pragma: no cover FONT_SMALL_THRESHOLD = 50 # pragma: no cover FONT_MEDIUM_THRESHOLD = 100 # pragma: no cover FONT_LARGE_THRESHOLD = 200 # pragma: no cover diff --git a/art/test.py b/art/test.py index ebaa77df..87030110 100644 --- a/art/test.py +++ b/art/test.py @@ -4345,11 +4345,11 @@ \__,_||_| \__| - _ _ ____ -__ __| || | | ___| -\ \ / /| || |_ |___ \ - \ V / |__ _| _ ___) | - \_/ |_| (_)|____/ + _ _ __ +__ __| || | / /_ +\ \ / /| || |_ | '_ \ + \ V / |__ _| _ | (_) | + \_/ |_| (_) \___/ ASCII art is also known as "computer text art". diff --git a/otherfile/version_check.py b/otherfile/version_check.py index 7582b90f..aecf69c0 100644 --- a/otherfile/version_check.py +++ b/otherfile/version_check.py @@ -6,7 +6,7 @@ from art.art_param import * Failed = 0 -VERSION = "4.5" +VERSION = "4.6" README_ITEMS = ['{0}'.format(str(FONT_COUNTER)), ''.format(str(ART_COUNTER)), diff --git a/setup.py b/setup.py index db0e1e10..fe7cbd5c 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def read_description(): setup( name='art', packages=['art'], - version='4.5', + version='4.6', description='ASCII Art Library For Python', long_description=read_description(), long_description_content_type='text/markdown',