diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 2d0ca36..d443f20 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: Reserver version description: Which version of Reserver are you using? options: + - Reserver 0.8 - Reserver 0.7 - Reserver 0.6 - Reserver 0.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index bc98620..be07abe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.8] - 2026-05-27 +### Changed +- `upload` method in `uploader.py` +- `__init__` method in `uploader.py` +- `generate_template_pyproject_toml` function in `functions.py` +- `generate_template_setup_py` function in `functions.py` +- Test system modified +## [0.7] - 2026-04-03 ### Changed - `generate_template_setup_py` function in `reserver/functions.py` - `generate_template_pyproject_toml` function in `reserver/functions.py` @@ -91,7 +99,8 @@ 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.7...dev +[Unreleased]: https://github.com/openscilab/reserver/compare/v0.8...dev +[0.8]: https://github.com/openscilab/reserver/compare/v0.7...v0.8 [0.7]: https://github.com/openscilab/reserver/compare/v0.6...v0.7 [0.6]: https://github.com/openscilab/reserver/compare/v0.5...v0.6 [0.5]: https://github.com/openscilab/reserver/compare/v0.4...v0.5 diff --git a/README.md b/README.md index 41c6e25..9dab631 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,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.7` +- Run `pip install reserver==0.8` ### Source code -- Download [Version 0.7](https://github.com/openscilab/reserver/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip) +- Download [Version 0.8](https://github.com/openscilab/reserver/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip) - Run `pip install .` ## Usage diff --git a/SECURITY.md b/SECURITY.md index 7f45591..4802d07 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.7 | :white_check_mark: | -| < 0.7 | :x: | +| 0.8 | :white_check_mark: | +| < 0.8 | :x: | ## Reporting a vulnerability diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 32e78e4..b3eb35d 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "reserver" %} -{% set version = "0.7" %} +{% set version = "0.8" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index efac99c..994bf1d 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -RESERVER_VERSION = "0.7" +RESERVER_VERSION = "0.8" SETUP_ITEMS = [ diff --git a/reserver/params.py b/reserver/params.py index 1abb2ec..59800c1 100644 --- a/reserver/params.py +++ b/reserver/params.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.7" +RESERVER_VERSION = "0.8" RESERVER_NAME = "reserver" RESERVER_REPO_URL = "https://github.com/openscilab/reserver" PACKAGE_PARAMETERS = { diff --git a/setup.py b/setup.py index 034171f..8483441 100644 --- a/setup.py +++ b/setup.py @@ -29,14 +29,14 @@ def read_description(): setup( name='reserver', packages=['reserver',], - version='0.7', + version='0.8', 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.7', + download_url='https://github.com/openscilab/reserver/tarball/v0.8', keywords="pypi pip package name reserve reserver reservation python", project_urls={ 'Source': 'https://github.com/openscilab/reserver',