Skip to content

Commit 60b96e0

Browse files
Version 0.2 (#18)
* rel : migrate to version 0.2 * rel : CHANGELOG.md updated
1 parent ef0345a commit 60b96e0

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ body:
8484
label: IPSpot version
8585
description: Which version of IPSpot are you using?
8686
options:
87+
- IPSpot 0.2
8788
- IPSpot 0.1
8889
default: 0
8990
validations:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.2] - 2025-05-04
89
### Added
910
- Support [ip.sb](https://api.ip.sb/geoip)
1011
- `--timeout` argument
@@ -23,7 +24,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2324
- `--no-geo` argument
2425
- Logo
2526

26-
[Unreleased]: https://github.com/openscilab/ipspot/compare/v0.1...dev
27+
[Unreleased]: https://github.com/openscilab/ipspot/compare/v0.2...dev
28+
[0.2]: https://github.com/openscilab/ipspot/compare/v0.1...v0.2
2729
[0.1]: https://github.com/openscilab/ipspot/compare/3216fb7...v0.1
2830

2931

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@
5252
## Installation
5353

5454
### Source Code
55-
- Download [Version 0.1](https://github.com/openscilab/ipspot/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/ipspot/archive/dev.zip)
55+
- Download [Version 0.2](https://github.com/openscilab/ipspot/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/ipspot/archive/dev.zip)
5656
- `pip install .`
5757

5858
### PyPI
5959

6060
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
61-
- `pip install ipspot==0.1`
61+
- `pip install ipspot==0.2`
6262

6363

6464
## Usage
@@ -92,7 +92,7 @@
9292
```console
9393
> ipspot --version
9494

95-
0.1
95+
0.2
9696
```
9797

9898
#### Info
@@ -107,11 +107,11 @@
107107
|___||_| |____/ | .__/ \___/ \__|
108108
|_|
109109

110-
__ __ ___ _
111-
\ \ / / _ / _ \ / |
112-
\ \ / / (_)| | | | | |
113-
\ V / _ | |_| | _ | |
114-
\_/ (_) \___/ (_)|_|
110+
__ __ ___ ____
111+
\ \ / / _ / _ \ |___ \
112+
\ \ / / (_)| | | | __) |
113+
\ V / _ | |_| | _ / __/
114+
\_/ (_) \___/ (_)|_____|
115115

116116

117117

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 0.1 | :white_check_mark: |
8-
| < 0.1 | :x: |
7+
| 0.2 | :white_check_mark: |
8+
| < 0.2 | :x: |
99

1010
## Reporting a Vulnerability
1111

ipspot/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""ipspot params."""
33
from enum import Enum
44

5-
IPSPOT_VERSION = "0.1"
5+
IPSPOT_VERSION = "0.2"
66

77
IPSPOT_OVERVIEW = '''
88
IPSpot is a Python library for retrieving the current system's IP address and location information.

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import codecs
66

77
Failed = 0
8-
VERSION = "0.1"
8+
VERSION = "0.2"
99

1010
README_ITEMS = [
1111
"[Version {0}](https://github.com/openscilab/ipspot/archive/v{0}.zip)",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ def read_description() -> str:
3232
setup(
3333
name='ipspot',
3434
packages=['ipspot'],
35-
version='0.1',
35+
version='0.2',
3636
description='IPSpot: A Python Tool to Fetch the System\'s IP Address',
3737
long_description=read_description(),
3838
long_description_content_type='text/markdown',
3939
include_package_data=True,
4040
author='IPSpot Development Team',
4141
author_email='[email protected]',
4242
url='https://github.com/openscilab/ipspot',
43-
download_url='https://github.com/openscilab/ipspot/tarball/v0.1',
43+
download_url='https://github.com/openscilab/ipspot/tarball/v0.2',
4444
keywords="ip ipv4 geo geolocation network location ipspot cli",
4545
project_urls={
4646
'Source': 'https://github.com/openscilab/ipspot'

0 commit comments

Comments
 (0)