Skip to content
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
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ body:
label: IPForce version
description: Which version of IPForce are you using?
options:
- IPForce 0.1
Comment thread
AHReccese marked this conversation as resolved.
- IPForce 0.1
- IPForce 0.2
default: 0
validations:
required: true
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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 ipforce/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ 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',
include_package_data=True,
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'
Expand Down
Loading