diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 442af6a..d86256c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -84,7 +84,8 @@ body: label: IPForce version description: Which version of IPForce are you using? options: - - IPForce 0.1 + - IPForce 0.1 + - IPForce 0.2 default: 0 validations: required: true diff --git a/CHANGELOG.md b/CHANGELOG.md index df88d37..6ade8fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 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.2] - 2026-09-09 ### Added - `IPForceAdapter` unified factory function - `IPForceSession` unified session class @@ -22,5 +23,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `IPv4TransportAdapter` class - Test system -[Unreleased]: https://github.com/openscilab/ipforce/compare/v0.1...dev -[0.1]: https://github.com/openscilab/ipforce/compare/7128b04...v0.1 +[Unreleased]: https://github.com/openscilab/ipforce/compare/v0.2...dev +[0.2]: https://github.com/openscilab/ipforce/compare/v0.1...v0.2 +[0.1]: https://github.com/openscilab/ipforce/compare/7128b04...v0.1 \ No newline at end of file diff --git a/README.md b/README.md index bdea2fa..387b13d 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,12 @@ ## Installation ### Source Code -- Download [Version 0.1](https://github.com/openscilab/ipforce/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/ipforce/archive/dev.zip) +- Download [Version 0.2](https://github.com/openscilab/ipforce/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/ipforce/archive/dev.zip) - `pip install .` ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- `pip install ipforce==0.1` +- `pip install ipforce==0.2` ## Usage diff --git a/SECURITY.md b/SECURITY.md index 3993427..d8028d2 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 diff --git a/ipforce/params.py b/ipforce/params.py index 8a41e10..0353a54 100644 --- a/ipforce/params.py +++ b/ipforce/params.py @@ -2,7 +2,7 @@ """ipforce params.""" from enum import Enum -IPFORCE_VERSION = "0.1" +IPFORCE_VERSION = "0.2" IPFORCE_OVERVIEW = '''OVERVIEW''' IPFORCE_REPO = "https://github.com/openscilab/ipforce" diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index d043dbd..414017a 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -5,7 +5,7 @@ import codecs Failed = 0 -VERSION = "0.1" +VERSION = "0.2" README_ITEMS = [ "[Version {0}](https://github.com/openscilab/ipforce/archive/v{0}.zip)", diff --git a/setup.py b/setup.py index d5a289c..a898b31 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def read_description() -> str: setup( name='ipforce', packages=['ipforce'], - version='0.1', + version='0.2', description='IPForce: Force IPv4/IPv6 in Python HTTP Requests', long_description=read_description(), long_description_content_type='text/markdown', @@ -29,7 +29,7 @@ def read_description() -> str: author='IPForce Development Team', author_email='ipforce@openscilab.com', url='https://github.com/openscilab/ipforce', - download_url='https://github.com/openscilab/ipforce/tarball/v0.1', + download_url='https://github.com/openscilab/ipforce/tarball/v0.2', keywords='http ipv4 ipv6 network requests adapter dns socket protocol ip-force', project_urls={ 'Source': 'https://github.com/openscilab/ipforce'