From 39d9a17bcef69f593bbea4db81b0cebb94cb02c5 Mon Sep 17 00:00:00 2001 From: AmirHosein Rostami <32750909+AHReccese@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:51:03 -0400 Subject: [PATCH] Version 0.3 (#55) * `RELEASE.md` instructions applied * remove reference part + add AmirBoresh to Authors.md * Update CHANGELOG.md --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + AUTHORS.md | 1 + CHANGELOG.md | 8 ++++++-- README.md | 10 ++-------- SECURITY.md | 4 ++-- otherfiles/meta.yaml | 2 +- otherfiles/version_check.py | 2 +- reserver/reserver_param.py | 2 +- setup.py | 4 ++-- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 49a63a4..f492664 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -84,6 +84,7 @@ body: label: Reserver version description: Which version of Reserver are you using? options: + - Reserver 0.3 - Reserver 0.2 - Reserver 0.1 default: 0 diff --git a/AUTHORS.md b/AUTHORS.md index d2f3191..52783e6 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -8,3 +8,4 @@ # Other Contributors ---------- +- Amir Boreshnavard ([Telegram](https://t.me/ABoreshnavard)) \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a5c0bd6..eb2c4fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added +### Changed +## [0.3] - 2024-08-28 +### Added - CLI tests added - `param` arg in CLI Handler - more testcases in conflict cases @@ -42,6 +45,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Handle similar name existence in PyPI - Handle issue with "-" character `.egginfo` file name -[Unreleased]: https://github.com/openscilab/reserver/compare/v0.2...dev +[Unreleased]: https://github.com/openscilab/reserver/compare/v0.3...dev +[0.3]: https://github.com/openscilab/reserver/compare/v0.2...v0.3 [0.2]: https://github.com/openscilab/reserver/compare/v0.1...v0.2 -[0.1]: https://github.com/openscilab/reserver/compare/0ae5bb9...v0.1 \ No newline at end of file +[0.1]: https://github.com/openscilab/reserver/compare/0ae5bb9...v0.1 diff --git a/README.md b/README.md index 2ad6526..f09f450 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,9 @@ Reserver is an open source Python package that offers the ability to quickly ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install reserver==0.2` +- Run `pip install reserver==0.3` ### Source code -- Download [Version 0.2](https://github.com/openscilab/reserver/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip) +- Download [Version 0.3](https://github.com/openscilab/reserver/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip) - Run `pip install .` ## Usage @@ -145,12 +145,6 @@ You can also join our discord server Discord Channel -## References - -1. Box icons created by Good Ware - Flaticon -2. Reserved icons created by Freepik - Flaticon - - ## Show your support ### Star this repo diff --git a/SECURITY.md b/SECURITY.md index b29d91b..2b20bd0 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 7a1f15e..a8ae1c1 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "reserver" %} -{% 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 d7a603f..547de3a 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -RESERVER_VERSION = "0.2" +RESERVER_VERSION = "0.3" SETUP_ITEMS = [ diff --git a/reserver/reserver_param.py b/reserver/reserver_param.py index 108af6e..92921e8 100644 --- a/reserver/reserver_param.py +++ b/reserver/reserver_param.py @@ -3,7 +3,7 @@ OVERVIEW = """ Reserver is an open source Python package that offers the ability to quickly reserve a PyPI package name. Got a notion? Before it's taken, immediately reserve the product name! """ -RESERVER_VERSION = "0.2" +RESERVER_VERSION = "0.3" RESERVER_NAME = "reserver" PYPI_TEST_URL = "https://test.pypi.org/project" PYPI_MAIN_URL = "https://pypi.org/project" diff --git a/setup.py b/setup.py index 94931d0..9db2bc1 100644 --- a/setup.py +++ b/setup.py @@ -29,14 +29,14 @@ def read_description(): setup( name='reserver', packages=['reserver',], - version='0.2', + version='0.3', description='PyPI package name reserver', long_description=read_description(), long_description_content_type='text/markdown', author='Reserver Development Team', author_email='reserver@openscilab.com', url='https://github.com/openscilab/reserver', - download_url='https://github.com/openscilab/reserver/tarball/v0.2', + download_url='https://github.com/openscilab/reserver/tarball/v0.3', keywords="python3 python PyPI pip package name reservation", project_urls={ 'Source': 'https://github.com/openscilab/reserver',