From 58c3f52507065fe1044fe6b377c0a0401ef49b05 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 7 Sep 2026 21:08:55 -0400 Subject: [PATCH 1/4] `CHANGELOG.md` updated --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 From 01ad4e01bbb3d56470ff4cae62e1908be1aff89c Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 7 Sep 2026 21:09:05 -0400 Subject: [PATCH 2/4] `README.md` updated --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 1e9857bc9157d4c335e4746793df9fa217452cb2 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 7 Sep 2026 21:09:23 -0400 Subject: [PATCH 3/4] version (`0.1` -> `0.2`) updated --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- SECURITY.md | 4 ++-- ipforce/params.py | 2 +- otherfiles/version_check.py | 2 +- setup.py | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 442af6a..8d21398 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -84,7 +84,7 @@ body: label: IPForce version description: Which version of IPForce are you using? options: - - IPForce 0.1 + - IPForce 0.2 default: 0 validations: required: true 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' From 34a344cbe6881c87e3c8a8e179f94440d0d823d7 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 7 Sep 2026 21:21:31 -0400 Subject: [PATCH 4/4] add `0.1` back to options --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8d21398..d86256c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -84,6 +84,7 @@ body: label: IPForce version description: Which version of IPForce are you using? options: + - IPForce 0.1 - IPForce 0.2 default: 0 validations: