From 9701f068b2cc39cfe07d567ef809fb23f6049211 Mon Sep 17 00:00:00 2001 From: Sepand Haghighi Date: Fri, 6 Sep 2024 22:46:19 +0330 Subject: [PATCH] Version 1.3 (#227) * rel : migrate to version 1.3 * rel : CHANGELOG.md updated for version 1.3 * rel : notebooks updated for version 1.3 --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + CHANGELOG.md | 4 +++- README.md | 4 ++-- SECURITY.md | 4 ++-- examples/bulk.ipynb | 2 +- examples/demo.ipynb | 2 +- otherfiles/meta.yaml | 2 +- otherfiles/version_check.py | 2 +- samila/params.py | 2 +- setup.py | 8 ++++---- 10 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 4038f5a..478ff1f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: Samila version description: Which version of Samila are you using? options: + - Samila 1.3 - Samila 1.2 - Samila 1.1 - Samila 1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 454ba7f..846288f 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] +## [1.3] - 2024-09-09 ### Added - `deprecated` function - 14 new generation modes @@ -212,7 +213,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/v1.2...dev +[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.3...dev +[1.3]: https://github.com/sepandhaghighi/samila/compare/v1.2...v1.3 [1.2]: https://github.com/sepandhaghighi/samila/compare/v1.1...v1.2 [1.1]: https://github.com/sepandhaghighi/samila/compare/v1.0...v1.1 [1.0]: https://github.com/sepandhaghighi/samila/compare/v0.9...v1.0 diff --git a/README.md b/README.md index 54b64d9..15d567f 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,10 @@ Samila is a generative art generator written in Python, Samila lets you create i ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install samila==1.2` +- Run `pip install samila==1.3` ### Source code -- Download [Version 1.2](https://github.com/sepandhaghighi/samila/archive/v1.2.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip) +- Download [Version 1.3](https://github.com/sepandhaghighi/samila/archive/v1.3.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip) - Run `pip install .` ### Conda diff --git a/SECURITY.md b/SECURITY.md index bdc65b4..b453a8d 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 1.2 | :white_check_mark: | -| < 1.2 | :x: | +| 1.3 | :white_check_mark: | +| < 1.3 | :x: | ## Reporting a vulnerability diff --git a/examples/bulk.ipynb b/examples/bulk.ipynb index 790f601..0c24e7f 100644 --- a/examples/bulk.ipynb +++ b/examples/bulk.ipynb @@ -15,7 +15,7 @@ "id": "-rqRJHD2FNN8" }, "source": [ - "### Version : 1.2\n", + "### Version : 1.3\n", "---" ] }, diff --git a/examples/demo.ipynb b/examples/demo.ipynb index 7099e51..2095188 100644 --- a/examples/demo.ipynb +++ b/examples/demo.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Version : 1.2\n", + "### Version : 1.3\n", "---" ] }, diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 7bc9d6c..5e372f4 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "samila" %} -{% set version = "1.2" %} +{% set version = "1.3" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 02a1968..6038423 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 = "1.2" +SAMILA_VERSION = "1.3" SETUP_ITEMS = [ diff --git a/samila/params.py b/samila/params.py index bc0dd74..e78d301 100644 --- a/samila/params.py +++ b/samila/params.py @@ -4,7 +4,7 @@ import math from enum import Enum import matplotlib -SAMILA_VERSION = "1.2" # pragma: no cover +SAMILA_VERSION = "1.3" # 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 0a30058..df64f87 100644 --- a/setup.py +++ b/setup.py @@ -33,15 +33,15 @@ def read_description(): setup( name='samila', packages=['samila'], - version='1.2', - description='Generative ART', + version='1.3', + description='A Generative Art Generator', 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/v1.2', - keywords="generative-art art nft file nft-storage", + download_url='https://github.com/sepandhaghighi/samila/tarball/v1.3', + keywords="generative generative-art art nft file", project_urls={ 'Source': 'https://github.com/sepandhaghighi/samila', 'Tracker': 'https://github.com/sepandhaghighi/samila/issues',