Skip to content

Commit 7e12224

Browse files
Version 1.5 (#251)
* rel : migrate to version 1.5 * rel : CHANGELOG.md updated * rel : examples updated * rel : meta.yaml updated
1 parent a11c96a commit 7e12224

10 files changed

Lines changed: 15 additions & 12 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ body:
8686
label: Samila version
8787
description: Which version of Samila are you using?
8888
options:
89+
- Samila 1.5
8990
- Samila 1.4
9091
- Samila 1.3
9192
- Samila 1.2

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [1.5] - 2025-01-22
89
### Added
910
- 3 new generation modes
1011
1. `RANDOM`
@@ -232,7 +233,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
232233
- `generate` method
233234
- `nft_storage` method
234235

235-
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.4...dev
236+
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.5...dev
237+
[1.5]: https://github.com/sepandhaghighi/samila/compare/v1.4...v1.5
236238
[1.4]: https://github.com/sepandhaghighi/samila/compare/v1.3...v1.4
237239
[1.3]: https://github.com/sepandhaghighi/samila/compare/v1.2...v1.3
238240
[1.2]: https://github.com/sepandhaghighi/samila/compare/v1.1...v1.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ Samila is a generative art generator written in Python, Samila lets you create i
6666

6767
### PyPI
6868
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
69-
- Run `pip install samila==1.4`
69+
- Run `pip install samila==1.5`
7070

7171
### Source code
72-
- Download [Version 1.4](https://github.com/sepandhaghighi/samila/archive/v1.4.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip)
72+
- Download [Version 1.5](https://github.com/sepandhaghighi/samila/archive/v1.5.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip)
7373
- Run `pip install .`
7474

7575
### Conda

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 1.4 | :white_check_mark: |
8-
| < 1.4 | :x: |
7+
| 1.5 | :white_check_mark: |
8+
| < 1.5 | :x: |
99

1010
## Reporting a vulnerability
1111

examples/bulk.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"id": "-rqRJHD2FNN8"
1616
},
1717
"source": [
18-
"### Version : 1.4\n",
18+
"### Version : 1.5\n",
1919
"---"
2020
]
2121
},

examples/demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"### Version : 1.4\n",
14+
"### Version : 1.5\n",
1515
"---"
1616
]
1717
},

otherfiles/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "samila" %}
2-
{% set version = "1.4" %}
2+
{% set version = "1.5" %}
33

44
package:
55
name: {{ name|lower }}

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
SAMILA_VERSION = "1.4"
7+
SAMILA_VERSION = "1.5"
88

99

1010
SETUP_ITEMS = [

samila/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from enum import Enum
55
import matplotlib
66

7-
SAMILA_VERSION = "1.4" # pragma: no cover
7+
SAMILA_VERSION = "1.5" # pragma: no cover
88

99
OVERVIEW = '''
1010
Samila is a generative art generator written in Python, Samila let's you

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ def read_description():
3333
setup(
3434
name='samila',
3535
packages=['samila'],
36-
version='1.4',
36+
version='1.5',
3737
description='A Generative Art Generator',
3838
long_description=read_description(),
3939
long_description_content_type='text/markdown',
4040
author='Samila Development Team',
4141
author_email='info@samila.site',
4242
url='https://www.samila.site',
43-
download_url='https://github.com/sepandhaghighi/samila/tarball/v1.4',
43+
download_url='https://github.com/sepandhaghighi/samila/tarball/v1.5',
4444
keywords="generative generative-art art nft file",
4545
project_urls={
4646
'Source': 'https://github.com/sepandhaghighi/samila',

0 commit comments

Comments
 (0)