diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 6f5c709..eccebf3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: Rokh version description: Which version of Rokh are you using? options: + - Rokh 0.3 - Rokh 0.2 - Rokh 0.1 default: 0 diff --git a/CHANGELOG.md b/CHANGELOG.md index dffff3e..804250a 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.3] - 2025-12-21 ### Added - United nations list of international days and weeks ### Changed @@ -27,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Hijri events -[Unreleased]: https://github.com/openscilab/rokh/compare/v0.2...dev +[Unreleased]: https://github.com/openscilab/rokh/compare/v0.3...dev +[0.3]: https://github.com/openscilab/rokh/compare/v0.2...v0.3 [0.2]: https://github.com/openscilab/rokh/compare/v0.1...v0.2 [0.1]: https://github.com/openscilab/rokh/compare/0397711...v0.1 \ No newline at end of file diff --git a/README.md b/README.md index 57ae240..2fff059 100644 --- a/README.md +++ b/README.md @@ -68,9 +68,9 @@ In Farsi, Rokh is derived from Rokhdad, meaning "event." Rokh itself also means ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install rokh==0.2` +- Run `pip install rokh==0.3` ### Source code -- Download [Version 0.2](https://github.com/openscilab/rokh/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/rokh/archive/dev.zip) +- Download [Version 0.3](https://github.com/openscilab/rokh/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/rokh/archive/dev.zip) - Run `pip install .` ## Usage diff --git a/SECURITY.md b/SECURITY.md index 89dd239..d5200d5 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.2 | :white_check_mark: | -| < 0.2 | :x: | +| 0.3 | :white_check_mark: | +| < 0.3 | :x: | ## Reporting a vulnerability diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 6df46c3..6dbec5d 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "rokh" %} -{% set version = "0.2" %} +{% set version = "0.3" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 404e20a..ffd902d 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -ROKH_VERSION = "0.2" +ROKH_VERSION = "0.3" SETUP_ITEMS = [ diff --git a/rokh/params.py b/rokh/params.py index 1e95f1b..2e1af89 100644 --- a/rokh/params.py +++ b/rokh/params.py @@ -2,7 +2,7 @@ """Parameters for the rokh package.""" from enum import Enum -ROKH_VERSION = "0.2" +ROKH_VERSION = "0.3" class DateSystem(Enum): diff --git a/setup.py b/setup.py index c3cfb08..3863895 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description() -> str: setup( name='rokh', packages=['rokh', 'rokh.events'], - version='0.2', + version='0.3', description="Rokh: Iranian Calendar Events Collection", long_description=read_description(), long_description_content_type='text/markdown', author='Rokh Development Team', author_email='rokh@openscilab.com', url='https://github.com/openscilab/rokh', - download_url='https://github.com/openscilab/rokh/tarball/v0.2', + download_url='https://github.com/openscilab/rokh/tarball/v0.3', keywords="events date date-system calendar gregorian hijri jalali", project_urls={ 'Source': 'https://github.com/openscilab/rokh',