Skip to content

Commit

Permalink
RELEASE.md instructions applied
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Aug 27, 2024
1 parent ba6f57d commit 29c1ada
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 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.3
- Reserver 0.2
- Reserver 0.1
default: 0
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-26
### Added
- CLI tests added
- `param` arg in CLI Handler
- more testcases in conflict cases
Expand Down Expand Up @@ -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
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.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
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.2 | :white_check_mark: |
| < 0.2 | :x: |
| 0.3 | :white_check_mark: |
| < 0.3 | :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.2" %}
{% set version = "0.3" %}

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.2"
RESERVER_VERSION = "0.3"


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.2"
RESERVER_VERSION = "0.3"
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.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='[email protected]',
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',
Expand Down

0 comments on commit 29c1ada

Please sign in to comment.