rel : migrate to version 0.8

pull/136/head
sepandhaghighi 2022-05-31 20:09:27 +04:30
rodzic 819792d832
commit c1dc35ec6a
5 zmienionych plików z 9 dodań i 7 usunięć

Wyświetl plik

@ -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]
## [0.8] - 2022-06-01
### Added
- `INVALID_COLOR_TYPE_ERROR` error
- `COLOR_NOT_FOUND_WARNING` warning
@ -122,7 +123,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `generate` method
- `nft_storage` method
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.7...dev
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.8...dev
[0.8]: https://github.com/sepandhaghighi/samila/compare/v0.7...v0.8
[0.7]: https://github.com/sepandhaghighi/samila/compare/v0.6...v0.7
[0.6]: https://github.com/sepandhaghighi/samila/compare/v0.5...v0.6
[0.5]: https://github.com/sepandhaghighi/samila/compare/v0.4...v0.5

Wyświetl plik

@ -88,7 +88,7 @@ Samila is a generative art generator written in Python, Samila let's you create
### Source code
- Download [Version 0.7](https://github.com/sepandhaghighi/samila/archive/v0.7.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip)
- Download [Version 0.8](https://github.com/sepandhaghighi/samila/archive/v0.8.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip)
- Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access)
- Run `python3 setup.py install` or `python setup.py install` (Need root access)
@ -96,7 +96,7 @@ Samila is a generative art generator written in Python, Samila let's you create
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install samila==0.7` or `pip3 install samila==0.7` (Need root access)
- Run `pip install samila==0.8` or `pip3 install samila==0.8` (Need root access)
### Easy install

Wyświetl plik

@ -4,7 +4,7 @@ import os
import sys
import codecs
Failed = 0
SAMILA_VERSION = "0.7"
SAMILA_VERSION = "0.8"
SETUP_ITEMS = [

Wyświetl plik

@ -4,7 +4,7 @@ import math
from enum import Enum
from matplotlib import colors as mcolors
SAMILA_VERSION = "0.7" # pragma: no cover
SAMILA_VERSION = "0.8" # pragma: no cover
OVERVIEW = '''
Samila is a generative art generator written in Python, Samila let's you

Wyświetl plik

@ -32,14 +32,14 @@ def read_description():
setup(
name='samila',
packages=['samila'],
version='0.7',
version='0.8',
description='Generative ART',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Samila Development Team',
author_email='info@4r7.ir',
url='https://github.com/sepandhaghighi/samila',
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.7',
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.8',
keywords="generative-art art nft file nft-storage",
project_urls={
'Source': 'https://github.com/sepandhaghighi/samila',