Skip to content

Commit 20cbccf

Browse files
committed
bump version to 1.0.1
1 parent de0a697 commit 20cbccf

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

agentsniff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""AgentSniff — AI Agent Network Scanner."""
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.0.1"

agentsniff/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Colors:
4444
/ ___ / /_/ / __/ / / / /_ ___/ / / / / / __/ __/
4545
/_/ |_\\__, /\\___/_/ /_/\\__//____/_/ /_/_/_/ /_/
4646
/____/
47-
{Colors.RESET}{Colors.DIM} AI Agent Network Scanner v1.0.0
47+
{Colors.RESET}{Colors.DIM} AI Agent Network Scanner v1.0.1
4848
Detect AI agents on your network{Colors.RESET}
4949
"""
5050

agentsniff/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
app = FastAPI(
3333
title="AgentSniff API",
3434
description="AI Agent Network Scanner - REST API",
35-
version="1.0.0",
35+
version="1.0.1",
3636
)
3737

3838
app.add_middleware(
@@ -67,7 +67,7 @@ async def health():
6767
return {
6868
"status": "ok",
6969
"service": "agentsniff",
70-
"version": "1.0.0",
70+
"version": "1.0.1",
7171
"timestamp": datetime.now(timezone.utc).isoformat(),
7272
}
7373

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentsniff"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "AI Agent Network Scanner - Detect AI agents on your network"
99
readme = "README.md"
1010
license = "Apache-2.0"

0 commit comments

Comments
 (0)