From a65cea3549975a5e66649feb8dc6a77e244f063e Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Wed, 28 Sep 2022 19:56:13 +0330 Subject: [PATCH] rel : migrate to version 0.9 --- CHANGELOG.md | 4 +++- README.md | 4 ++-- otherfiles/meta.yaml | 2 +- otherfiles/version_check.py | 2 +- samila/params.py | 2 +- setup.py | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae9bdfe..eeb16a8 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] +## [0.9] - 2022-09-28 ### Added - Anaconda workflow ### Changed @@ -135,7 +136,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.8...dev +[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.9...dev +[0.9]: https://github.com/sepandhaghighi/samila/compare/v0.8...v0.9 [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 diff --git a/README.md b/README.md index 1602861..1ca9b22 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Samila is a generative art generator written in Python, Samila let's you create ### Source code -- Download [Version 0.8](https://github.com/sepandhaghighi/samila/archive/v0.8.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip) +- Download [Version 0.9](https://github.com/sepandhaghighi/samila/archive/v0.9.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) @@ -97,7 +97,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.8` or `pip3 install samila==0.8` (Need root access) +- Run `pip install samila==0.9` or `pip3 install samila==0.9` (Need root access) ### Easy install diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 0c23bd2..7d9c5d1 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "samila" %} -{% set version = "0.8" %} +{% set version = "0.9" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index dc7d585..91ae0ee 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import os import sys import codecs Failed = 0 -SAMILA_VERSION = "0.8" +SAMILA_VERSION = "0.9" SETUP_ITEMS = [ diff --git a/samila/params.py b/samila/params.py index f3cabeb..2fa87e7 100644 --- a/samila/params.py +++ b/samila/params.py @@ -5,7 +5,7 @@ from enum import Enum from matplotlib import colors as mcolors from matplotlib import cm -SAMILA_VERSION = "0.8" # pragma: no cover +SAMILA_VERSION = "0.9" # pragma: no cover OVERVIEW = ''' Samila is a generative art generator written in Python, Samila let's you diff --git a/setup.py b/setup.py index 7b60e1f..bb60154 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description(): setup( name='samila', packages=['samila'], - version='0.8', + version='0.9', description='Generative ART', long_description=read_description(), long_description_content_type='text/markdown', author='Samila Development Team', author_email='info@samila.site', url='https://www.samila.site', - download_url='https://github.com/sepandhaghighi/samila/tarball/v0.8', + download_url='https://github.com/sepandhaghighi/samila/tarball/v0.9', keywords="generative-art art nft file nft-storage", project_urls={ 'Source': 'https://github.com/sepandhaghighi/samila',