File tree Expand file tree Collapse file tree 7 files changed +22
-19
lines changed
Expand file tree Collapse file tree 7 files changed +22
-19
lines changed Original file line number Diff line number Diff line change 8585 label : IPSpot version
8686 description : Which version of IPSpot are you using?
8787 options :
88+ - IPSpot 0.7
8889 - IPSpot 0.6
8990 - IPSpot 0.5
9091 - IPSpot 0.4
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.7] - 2025-12-09
89### Added
910- ` --backoff-factor ` argument
1011### Changed
@@ -107,7 +108,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
107108- ` --no-geo ` argument
108109- Logo
109110
110- [ Unreleased ] : https://github.com/openscilab/ipspot/compare/v0.6...dev
111+ [ Unreleased ] : https://github.com/openscilab/ipspot/compare/v0.7...dev
112+ [ 0.7 ] : https://github.com/openscilab/ipspot/compare/v0.6...v0.7
111113[ 0.6 ] : https://github.com/openscilab/ipspot/compare/v0.5...v0.6
112114[ 0.5 ] : https://github.com/openscilab/ipspot/compare/v0.4...v0.5
113115[ 0.4 ] : https://github.com/openscilab/ipspot/compare/v0.3...v0.4
Original file line number Diff line number Diff line change 5353## Installation
5454
5555### Source Code
56- - Download [ Version 0.6 ] ( https://github.com/openscilab/ipspot/archive/v0.6 .zip ) or [ Latest Source] ( https://github.com/openscilab/ipspot/archive/dev.zip )
56+ - Download [ Version 0.7 ] ( https://github.com/openscilab/ipspot/archive/v0.7 .zip ) or [ Latest Source] ( https://github.com/openscilab/ipspot/archive/dev.zip )
5757- ` pip install . `
5858
5959### PyPI
6060
6161- Check [ Python Packaging User Guide] ( https://packaging.python.org/installing/ )
62- - ` pip install ipspot==0.6 `
62+ - ` pip install ipspot==0.7 `
6363
6464
6565## Usage
115115``` console
116116> ipspot --version
117117
118- 0.6
118+ 0.7
119119```
120120
121121#### Info
122122
123123``` console
124124> ipspot --info
125125
126- ___ ____ ____ _
127- |_ _|| _ \ / ___| _ __ ___ | |_
126+ ___ ____ ____ _
127+ |_ _|| _ \ / ___| _ __ ___ | |_
128128 | | | |_) |\___ \ | '_ \ / _ \ | __|
129- | | | __/ ___) || |_) || (_) || |_
129+ | | | __/ ___) || |_) || (_) || |_
130130|___||_| |____/ | .__/ \___/ \__|
131- |_|
131+ |_|
132132
133- __ __ ___ __
134- \ \ / / _ / _ \ / /_
135- \ \ / / (_)| | | | | '_ \
136- \ V / _ | |_| | _ | (_) |
137- \_/ (_) \___/ (_) \___/
133+ __ __ ___ _____
134+ \ \ / / _ / _ \ |___ |
135+ \ \ / / (_)| | | | / /
136+ \ V / _ | |_| | _ / /
137+ \_/ (_) \___/ (_) /_/
138138
139139
140140
Original file line number Diff line number Diff line change 44
55| Version | Supported |
66| ------------- | ------------------ |
7- | 0.6 | :white_check_mark : |
8- | < 0.6 | :x : |
7+ | 0.7 | :white_check_mark : |
8+ | < 0.7 | :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.6 "
5+ IPSPOT_VERSION = "0.7 "
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.6 "
8+ VERSION = "0.7 "
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.6 ' ,
35+ version = '0.7 ' ,
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.6 ' ,
43+ download_url = 'https://github.com/openscilab/ipspot/tarball/v0.7 ' ,
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