Skip to content

Commit

Permalink
Version 0.2 (#36)
Browse files Browse the repository at this point in the history
* `CHANGELOG.md` updated

* update version to 0.2 in `README.md`

* update version to 0.2 in `SECURITY.md`

* update version to 0.2 in `setup.py`

* update version to 0.2 in `bug_report.yml`

* update version to 0.2 in `meta.yml`

* update version to 0.2 in `version_check.py`

* update version to 0.2 in `reserver_param.py`

* apply requested changes by Sadra

---------

Co-authored-by: AHReccese <[email protected]>
  • Loading branch information
AHReccese and AHReccese authored Jun 14, 2024
1 parent 8b77f0e commit 7750977
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ body:
label: Reserver version
description: Which version of Reserver are you using?
options:
- Reserver 0.2
- Reserver 0.1
default: 0
validations:
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]
### Added
### Changed
## [0.2] - 2024-06-17
### Added
- `CLI` handler
- `Python 3.6` support
- `has_named_parameter` method in `util.py`
- `feature_request.yml` template
- `config.yml` for issue template
- `batch_upload` method added to `PyPIUploader`
- `batch_upload` method in `PyPIUploader`
- `SECURITY.md`
### Changed
- `upload` method in `reserver_obj.py`
- `does_package_exist` method in `reserver_func.py`
- `test.yml` for `Python 3.6` support
- Logo updated
- Bug report template modified
- `Uploader` changed to `PyPIUploader`
Expand All @@ -25,5 +34,6 @@ 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.1...dev
[Unreleased]: https://github.com/openscilab/reserver/compare/v0.2...dev
[0.2]: https://github.com/openscilab/reserver/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/reserver/compare/0ae5bb9...v0.1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1`
- Run `pip install reserver==0.2`
### Source code
- Download [Version 0.1](https://github.com/openscilab/reserver/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip)
- Download [Version 0.2](https://github.com/openscilab/reserver/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.1 | :white_check_mark: |
| < 0.1 | :x: |
| 0.2 | :white_check_mark: |
| < 0.2 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "reserver" %}
{% set version = "0.1" %}
{% set version = "0.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
RESERVER_VERSION = "0.1"
RESERVER_VERSION = "0.2"


SETUP_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion reserver/reserver_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
RESERVER_VERSION = "0.2"
RESERVER_NAME = "reserver"
PYPI_TEST_URL = "https://test.pypi.org/project"
PYPI_MAIN_URL = "https://pypi.org/project"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ def read_description():
setup(
name='reserver',
packages=['reserver',],
version='0.1',
version='0.2',
description='PyPI package name reserver',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Reserver Development Team',
author_email='[email protected]',
url='https://github.com/openscilab/reserver',
download_url='https://github.com/openscilab/reserver/tarball/v0.1',
download_url='https://github.com/openscilab/reserver/tarball/v0.2',
keywords="python3 python PyPI pip package name reservation",
project_urls={
'Source': 'https://github.com/openscilab/reserver',
Expand Down

0 comments on commit 7750977

Please sign in to comment.