Skip to content

Commit 9701f06

Browse files
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
1 parent c9d0707 commit 9701f06

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
label: Samila version
8686
description: Which version of Samila are you using?
8787
options:
88+
- Samila 1.3
8889
- Samila 1.2
8990
- Samila 1.1
9091
- Samila 1.0

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.3] - 2024-09-09
89
### Added
910
- `deprecated` function
1011
- 14 new generation modes
@@ -212,7 +213,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
212213
- `generate` method
213214
- `nft_storage` method
214215

215-
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.2...dev
216+
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.3...dev
217+
[1.3]: https://github.com/sepandhaghighi/samila/compare/v1.2...v1.3
216218
[1.2]: https://github.com/sepandhaghighi/samila/compare/v1.1...v1.2
217219
[1.1]: https://github.com/sepandhaghighi/samila/compare/v1.0...v1.1
218220
[1.0]: https://github.com/sepandhaghighi/samila/compare/v0.9...v1.0

README.md

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

6666
### PyPI
6767
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
68-
- Run `pip install samila==1.2`
68+
- Run `pip install samila==1.3`
6969

7070
### Source code
71-
- Download [Version 1.2](https://github.com/sepandhaghighi/samila/archive/v1.2.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip)
71+
- Download [Version 1.3](https://github.com/sepandhaghighi/samila/archive/v1.3.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip)
7272
- Run `pip install .`
7373

7474
### 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.2 | :white_check_mark: |
8-
| < 1.2 | :x: |
7+
| 1.3 | :white_check_mark: |
8+
| < 1.3 | :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.2\n",
18+
"### Version : 1.3\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.2\n",
14+
"### Version : 1.3\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.2" %}
2+
{% set version = "1.3" %}
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.2"
7+
SAMILA_VERSION = "1.3"
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.2" # pragma: no cover
7+
SAMILA_VERSION = "1.3" # pragma: no cover
88

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

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ def read_description():
3333
setup(
3434
name='samila',
3535
packages=['samila'],
36-
version='1.2',
37-
description='Generative ART',
36+
version='1.3',
37+
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.2',
44-
keywords="generative-art art nft file nft-storage",
43+
download_url='https://github.com/sepandhaghighi/samila/tarball/v1.3',
44+
keywords="generative generative-art art nft file",
4545
project_urls={
4646
'Source': 'https://github.com/sepandhaghighi/samila',
4747
'Tracker': 'https://github.com/sepandhaghighi/samila/issues',

0 commit comments

Comments
 (0)