Skip to content

Commit

Permalink
rel : migrate to version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed May 3, 2022
1 parent e6d40bf commit 9d47fe5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7] - 2022-05-04
### Added
- `fill_data` function
- `random_hex_color_gen` function
Expand Down Expand Up @@ -108,7 +109,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.6...dev
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.7...dev
[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
[0.4]: https://github.com/sepandhaghighi/samila/compare/v0.3...v0.4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@ Samila is a generative art generator written in Python, Samila let's you create


### Source code
- Download [Version 0.6](https://github.com/sepandhaghighi/samila/archive/v0.6.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip)
- Download [Version 0.7](https://github.com/sepandhaghighi/samila/archive/v0.7.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)

### PyPI


- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install samila==0.6` or `pip3 install samila==0.6` (Need root access)
- Run `pip install samila==0.7` or `pip3 install samila==0.7` (Need root access)

### Easy install

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
SAMILA_VERSION = "0.6"
SAMILA_VERSION = "0.7"


SETUP_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion samila/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from enum import Enum
from matplotlib import colors as mcolors

SAMILA_VERSION = "0.6" # pragma: no cover
SAMILA_VERSION = "0.7" # pragma: no cover

OVERVIEW = '''
Samila is a generative art generator written in Python, Samila let's you
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def read_description():
setup(
name='samila',
packages=['samila'],
version='0.6',
version='0.7',
description='Generative ART',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Sepand Haghighi',
author='Samila Development Team',
author_email='[email protected]',
url='https://github.com/sepandhaghighi/samila',
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.6',
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.7',
keywords="generative-art art nft file nft-storage",
project_urls={
'Source': 'https://github.com/sepandhaghighi/samila',
Expand Down

0 comments on commit 9d47fe5

Please sign in to comment.