File tree Expand file tree Collapse file tree 3 files changed +13
-25
lines changed Expand file tree Collapse file tree 3 files changed +13
-25
lines changed Original file line number Diff line number Diff line change 2
2
3
3
--------------------------------------------------------------------------------
4
4
5
+ ## 0.32.2
6
+
7
+ Released 2025/08/26.
8
+
9
+ ### Changed
10
+
11
+ * Removed ` PartialEq<Debug*Offset> ` implementations for ` UnitSectionOffset ` .
12
+ These were an unintended breaking change.
13
+ [ #789 ] ( https://github.com/gimli-rs/gimli/pull/789 )
14
+
15
+ --------------------------------------------------------------------------------
16
+
5
17
## 0.32.1
6
18
7
19
Released 2025/08/22.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " gimli"
3
- version = " 0.32.1 "
3
+ version = " 0.32.2 "
4
4
categories = [" development-tools::debugging" , " development-tools::profiling" , " parser-implementations" ]
5
5
description = " A library for reading and writing the DWARF debugging format."
6
6
documentation = " https://docs.rs/gimli"
Original file line number Diff line number Diff line change @@ -232,30 +232,6 @@ impl<T> From<DebugTypesOffset<T>> for UnitSectionOffset<T> {
232
232
}
233
233
}
234
234
235
- impl < T > PartialEq < DebugInfoOffset < T > > for UnitSectionOffset < T >
236
- where
237
- T : PartialEq ,
238
- {
239
- fn eq ( & self , other : & DebugInfoOffset < T > ) -> bool {
240
- match self {
241
- UnitSectionOffset :: DebugInfoOffset ( o) => o. eq ( other) ,
242
- UnitSectionOffset :: DebugTypesOffset ( _) => false ,
243
- }
244
- }
245
- }
246
-
247
- impl < T > PartialEq < DebugTypesOffset < T > > for UnitSectionOffset < T >
248
- where
249
- T : PartialEq ,
250
- {
251
- fn eq ( & self , other : & DebugTypesOffset < T > ) -> bool {
252
- match self {
253
- UnitSectionOffset :: DebugInfoOffset ( _) => false ,
254
- UnitSectionOffset :: DebugTypesOffset ( o) => o. eq ( other) ,
255
- }
256
- }
257
- }
258
-
259
235
impl < T > UnitSectionOffset < T >
260
236
where
261
237
T : Clone ,
You can’t perform that action at this time.
0 commit comments