File tree Expand file tree Collapse file tree 7 files changed +18
-15
lines changed
Expand file tree Collapse file tree 7 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55and 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
Original file line number Diff line number Diff line change 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
9292``` console
9393> ipspot --version
9494
95- 0.1
95+ 0.2
9696```
9797
9898#### Info
107107|___||_| |____/ | .__/ \___/ \__|
108108 |_|
109109
110- __ __ ___ _
111- \ \ / / _ / _ \ / |
112- \ \ / / (_)| | | | | |
113- \ V / _ | |_| | _ | |
114- \_/ (_) \___/ (_)|_ |
110+ __ __ ___ ____
111+ \ \ / / _ / _ \ |___ \
112+ \ \ / / (_)| | | | __) |
113+ \ V / _ | |_| | _ / __/
114+ \_/ (_) \___/ (_)|_____ |
115115
116116
117117
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 22"""ipspot params."""
33from enum import Enum
44
5- IPSPOT_VERSION = "0.1 "
5+ IPSPOT_VERSION = "0.2 "
66
77IPSPOT_OVERVIEW = '''
88IPSpot is a Python library for retrieving the current system's IP address and location information.
Original file line number Diff line number Diff line change 55import codecs
66
77Failed = 0
8- VERSION = "0.1 "
8+ VERSION = "0.2 "
99
1010README_ITEMS = [
1111 "[Version {0}](https://github.com/openscilab/ipspot/archive/v{0}.zip)" ,
Original file line number Diff line number Diff line change @@ -32,15 +32,15 @@ def read_description() -> str:
3232setup (
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' ,
41414242 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'
You can’t perform that action at this time.
0 commit comments