Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.4 #85

Merged
merged 6 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: Reserver version
description: Which version of Reserver are you using?
options:
- Reserver 0.4
- Reserver 0.3
- Reserver 0.2
- Reserver 0.1
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
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.4] - 2025-01-08
### Added
- default reviewer added in `dependabot.yml`
- `ReserverBaseError` added in `reserver/__init__.py`
Expand Down Expand Up @@ -55,7 +55,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.3...dev
[Unreleased]: https://github.com/openscilab/reserver/compare/v0.4...dev
[0.4]: https://github.com/openscilab/reserver/compare/v0.3...v0.4
[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 @@ -64,9 +64,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.3`
- Run `pip install reserver==0.4`
### Source code
- Download [Version 0.3](https://github.com/openscilab/reserver/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/reserver/archive/dev.zip)
- Download [Version 0.4](https://github.com/openscilab/reserver/archive/v0.4.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.3 | :white_check_mark: |
| < 0.3 | :x: |
| 0.4 | :white_check_mark: |
| < 0.4 | :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.3" %}
{% set version = "0.4" %}

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.3"
RESERVER_VERSION = "0.4"


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.3"
RESERVER_VERSION = "0.4"
RESERVER_NAME = "reserver"
PACKAGE_PARAMETERS = {
"description": "This name has been reserved using Reserver",
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.3',
version='0.4',
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.3',
download_url='https://github.com/openscilab/reserver/tarball/v0.4',
keywords="pypi pip package name reserve reserver reservation python",
project_urls={
'Source': 'https://github.com/openscilab/reserver',
Expand Down