From 0eed4a264944fb44baf1cfc11ef2604a493e769d Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 14 Jan 2026 18:00:44 +0000 Subject: [PATCH] Bump version to 2.9.5 - Update VERSION in config.py - Add changelog entry for v2.9.5 highlights - Update CHANGELOG.md with detailed release notes - Update pyproject.toml version Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ config.py | 12 +++++++++++- pyproject.toml | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af9751..46f03f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to iNTERCEPT will be documented in this file. +## [2.9.5] - 2026-01-14 + +### Added +- **MAC-Randomization Resistant Detection** - TSCM now identifies devices using randomized MAC addresses +- **Clickable Score Cards** - Click on threat scores to see detailed findings +- **Device Detail Expansion** - Click-to-expand device details in TSCM results +- **Root Privilege Check** - Warning display when running without required privileges +- **Real-time Device Streaming** - Devices stream to dashboard during TSCM sweep + +### Changed +- **TSCM Correlation Engine** - Improved device correlation with comprehensive reporting +- **Device Classification System** - Enhanced threat classification and scoring +- **WiFi Scanning** - Improved scanning reliability and device naming + +### Fixed +- **RF Scanning** - Fixed scanning issues with improved status feedback +- **TSCM Modal Readability** - Improved modal styling and close button visibility +- **Linux Device Detection** - Added more fallback methods for device detection +- **macOS Device Detection** - Fixed TSCM device detection on macOS +- **Bluetooth Event Type** - Fixed device type being overwritten +- **rtl_433 Bias-T Flag** - Corrected bias-t flag handling + +--- + ## [2.9.0] - 2026-01-10 ### Added diff --git a/config.py b/config.py index 666c2d0..bc6e81f 100644 --- a/config.py +++ b/config.py @@ -7,10 +7,20 @@ import os import sys # Application version -VERSION = "2.9.0" +VERSION = "2.9.5" # Changelog - latest release notes (shown on welcome screen) CHANGELOG = [ + { + "version": "2.9.5", + "date": "January 2026", + "highlights": [ + "Enhanced TSCM with MAC-randomization resistant detection", + "Clickable score cards and device detail expansion", + "RF scanning improvements with status feedback", + "Root privilege check and warning display", + ] + }, { "version": "2.9.0", "date": "January 2026", diff --git a/pyproject.toml b/pyproject.toml index 9ea365b..fc24f29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "intercept" -version = "2.0.0" +version = "2.9.5" description = "Signal Intelligence Platform - Pager/433MHz/ADS-B/Satellite/WiFi/Bluetooth" readme = "README.md" requires-python = ">=3.9"