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
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: IPSpot version
description: Which version of IPSpot are you using?
options:
- IPSpot 0.5
- IPSpot 0.4
- IPSpot 0.3
- IPSpot 0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022, macOS-13]
os: [ubuntu-22.04, windows-2022, macos-15-intel]
python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0]
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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.5] - 2025-10-17
### Added
- `Setup WARP` step in `test.yml`
- `setup-warp` action
- Support [ipwho.is](https://ipwho.is/)
- Support [ipquery.io](http://api.ipquery.io/?format=json)
Expand Down Expand Up @@ -83,7 +83,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `--no-geo` argument
- Logo

[Unreleased]: https://github.com/openscilab/ipspot/compare/v0.4...dev
[Unreleased]: https://github.com/openscilab/ipspot/compare/v0.5...dev
[0.5]: https://github.com/openscilab/ipspot/compare/v0.4...v0.5
[0.4]: https://github.com/openscilab/ipspot/compare/v0.3...v0.4
[0.3]: https://github.com/openscilab/ipspot/compare/v0.2...v0.3
[0.2]: https://github.com/openscilab/ipspot/compare/v0.1...v0.2
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
## Installation

### Source Code
- Download [Version 0.4](https://github.com/openscilab/ipspot/archive/v0.4.zip) or [Latest Source](https://github.com/openscilab/ipspot/archive/dev.zip)
- Download [Version 0.5](https://github.com/openscilab/ipspot/archive/v0.5.zip) or [Latest Source](https://github.com/openscilab/ipspot/archive/dev.zip)
- `pip install .`

### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip install ipspot==0.4`
- `pip install ipspot==0.5`


## Usage
Expand Down Expand Up @@ -114,7 +114,7 @@
```console
> ipspot --version

0.4
0.5
```

#### Info
Expand All @@ -129,11 +129,11 @@
|___||_| |____/ | .__/ \___/ \__|
|_|

__ __ ___ _ _
\ \ / / _ / _ \ | || |
\ \ / / (_)| | | | | || |_
\ V / _ | |_| | _ |__ _|
\_/ (_) \___/ (_) |_|
__ __ ___ ____
\ \ / / _ / _ \ | ___|
\ \ / / (_)| | | | |___ \
\ V / _ | |_| | _ ___) |
\_/ (_) \___/ (_)|____/



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.4 | :white_check_mark: |
| < 0.4 | :x: |
| 0.5 | :white_check_mark: |
| < 0.5 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion ipspot/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""ipspot params."""
from enum import Enum

IPSPOT_VERSION = "0.4"
IPSPOT_VERSION = "0.5"

IPSPOT_OVERVIEW = '''
IPSpot is a Python library for retrieving the current system's IP address and location information.
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.4"
VERSION = "0.5"

README_ITEMS = [
"[Version {0}](https://github.com/openscilab/ipspot/archive/v{0}.zip)",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ def read_description() -> str:
setup(
name='ipspot',
packages=['ipspot'],
version='0.4',
version='0.5',
description='IPSpot: A Python Tool to Fetch the System\'s IP Address',
long_description=read_description(),
long_description_content_type='text/markdown',
include_package_data=True,
author='IPSpot Development Team',
author_email='ipspot@openscilab.com',
url='https://github.com/openscilab/ipspot',
download_url='https://github.com/openscilab/ipspot/tarball/v0.4',
download_url='https://github.com/openscilab/ipspot/tarball/v0.5',
keywords="ip ipv4 geo geolocation network location ipspot cli",
project_urls={
'Source': 'https://github.com/openscilab/ipspot'
},
install_requires=get_requires(),
python_requires='>=3.7',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down