rel : migrate to version 0.3

pull/72/head
sepandhaghighi 2021-11-09 17:19:04 +03:30
rodzic 510afb04c3
commit 1ec5cd538e
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). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
## [0.3] - 2021-11-10
### Added ### Added
- Discord channel - Discord channel
- `load_data` function - `load_data` function
@ -42,7 +43,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `generate` method - `generate` method
- `nft_storage` method - `nft_storage` method
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.2...dev [Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.3...dev
[0.3]: https://github.com/sepandhaghighi/samila/compare/v0.2...v0.3
[0.2]: https://github.com/sepandhaghighi/samila/compare/v0.1...v0.2 [0.2]: https://github.com/sepandhaghighi/samila/compare/v0.1...v0.2
[0.1]: https://github.com/sepandhaghighi/samila/compare/1058677...v0.1 [0.1]: https://github.com/sepandhaghighi/samila/compare/1058677...v0.1

Wyświetl plik

@ -82,7 +82,7 @@ Samila is a generative art generator written in Python, Samila let's you create
### Source code ### Source code
- Download [Version 0.2](https://github.com/sepandhaghighi/samila/archive/v0.2.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip) - Download [Version 0.3](https://github.com/sepandhaghighi/samila/archive/v0.3.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 `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) - Run `python3 setup.py install` or `python setup.py install` (Need root access)
@ -90,7 +90,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/) - Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install samila==0.2` or `pip3 install samila==0.2` (Need root access) - Run `pip install samila==0.3` or `pip3 install samila==0.3` (Need root access)
### Easy install ### Easy install

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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