Skip to content

Commit

Permalink
New crate version 0.4.0
Browse files Browse the repository at this point in the history
- Started tracking Release Notes
- Updated dev dependency PCAP to version 1.3

Signed-off-by: Abhijit Gadgil <gabhijit@iitbombay.org>
  • Loading branch information
gabhijit committed Mar 18, 2024
1 parent 95ebf74 commit 15a929f
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scalpel"
version = "0.3.1"
version = "0.4.0"
license-file = "LICENSE"
readme = "README.md"
keywords = ["Wireshark", "pcap", "packet", "packet-parsing"]
Expand All @@ -23,7 +23,7 @@ log = { version = "0.4", optional = true }

[dev-dependencies]
criterion = "0.5"
pcap = { version = "1.1"}
pcap = { version = "1.3"}
clap = { version = "4.0" , features = ["derive"] }

# Required by `cargo flamegraph`
Expand Down
64 changes: 64 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Releases

## Release 0.4.0

### Features

1. Support for ICMP and ICMPv6
2. Support for IP Options - `EOOL`, `NOP`, `RR`, `MTUP`, `MTUR`
3. Removed dependency on `lazy_static` and started using `OnceLock`.

### Bug Fixes

1. Issues with parsing `SOA` RRs in `DNS`.
2. Incorrect dissection of Ethernet Source and Destination.
3. `build.rs` fixes for working on Windows.


### Contributors

- Mohammad Aadil Shabier (@aadilshabier)
- Chinmaya Sahoo (@csking101)
- Harshit Gupta (@hgupta12)
- JnanaN (@JnanaN)
- Abhijit Gadgil (@gabhijit)


## Release 0.3.1

### Features

1. Support for `MPLS` and `VxLAN`


### Bug Fixes

1. Correctly handling `num_packets` in the examples.
2. Consistent use of the constants `*_HEADER_LENGTH`
3. Improved formatting of the `register_defaults` function as a single string.

### Contributors

- Mohammad Aadil Shabier (@aadilshabier)
- Chinmaya Sahoo (@csking101)
- Abhijit Gadgil (@gabhijit)


## Release 0.3.0

### Features

1. Optional `logging` feature for the crate.
2. Support for Linux `SLL` `v1` and `v2` encapsulation.
3. Improved `TooShort` error for better debugging
4. Examples: Support for PCAP capture on `any` device.

### Bug Fixes

1. Fixed an issue with `register_encap_type`.


### Contributors

- Abhijit Gadgil (@gabhijit)

0 comments on commit 15a929f

Please sign in to comment.