Skip to content

Commit 65263f9

Browse files
author
Siddharth Chandrasekaran
committedFeb 20, 2024·
Release v3.0.1
Signed-off-by: Siddharth Chandrasekaran <sidcha.dev.@gmail.com>
1 parent 7750be2 commit 65263f9

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed
 

‎CHANGELOG

+37
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
v3.0.1
2+
------
3+
4+
20 February 2024
5+
6+
A quick follow up release adding a few key features that got left out in 3.0.0.
7+
Most notably, packet trace and data trace infrastructure has been reworked and
8+
a custom Wireshark protocol dissector for OSDP was added. Additionally, Some
9+
efforts has been made to support Windows as a build platform.
10+
11+
Enhancements:
12+
- libosdp: Add Packet scan skipped bytes instrumentation
13+
- pcap: Move declarations to a separate header
14+
- doc: Update info about dissector loading on windows
15+
- libosdp: Add support for windows builds
16+
- dissector: Append command/reply name to tree view for better analysis
17+
- libosdp: Migrate rust code to a dedicated repo
18+
- misc: dissector: Add support for data tracer
19+
- libosdp: data_trace: Fix bug in packet length passed to tracer
20+
- libosdp: pcap: Log the number of packets captured
21+
- libosdp: pcap: Bump utils submodule to fix issues
22+
- libosdp: Extend tracing infrastructure to DATA_TRACE
23+
- libosdp: Add timestamp to trace files for uniqueness
24+
- libosdp: Add a custom protocol disector for WireShark
25+
- libosdp: Switch to pcap based packet tracing
26+
27+
Fixes:
28+
- libosdp: Fix packet scan skipped bytes instrumentation
29+
- Repaired references to osdp_millis_now()
30+
- doc: Update debugging.rst and README.md with new tracing changes
31+
- examples: python: Fixup some more minor issues
32+
- libosdp: Rename samples/ as examples/ as it sounds better
33+
- examples: python: Fix CP and PD examples for the higher level osdp module
34+
- CI: Allow publish-pypi.yml to be activated on manual triggers
35+
- CI: Update python publishing to multilinux
36+
37+
138
v3.0.0
239
------
340

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
88
cmake_policy(SET CMP0063 NEW)
99

10-
project(libosdp VERSION 3.0.0)
10+
project(libosdp VERSION 3.0.1)
1111

1212
set(PROJECT_AUTHOR "Siddharth Chandrasekaran")
1313
set(PROJECT_AUTHOR_EMAIL "sidcha.dev@gmail.com")

‎python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import subprocess
1212

1313
project_name = "libosdp"
14-
project_version = "3.0.0"
14+
project_version = "3.0.1"
1515
current_dir = os.path.dirname(os.path.realpath(__file__))
1616
repo_root = os.path.realpath(os.path.join(current_dir, ".."))
1717

0 commit comments

Comments
 (0)
Please sign in to comment.