File tree Expand file tree Collapse file tree 4 files changed +17
-14
lines changed Expand file tree Collapse file tree 4 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 2
2
3
3
4
4
5
+ ## [ 0.6.0] ( https://github.com/Blobfolio/oxford_join/releases/tag/v0.6.0 ) - 2025-06-01
6
+
7
+ ### Changed
8
+
9
+ * Bump MSRV to ` 1.87 `
10
+
11
+ ### Breaking
12
+
13
+ * Remove ` Deref ` for ` Conjunction `
14
+
15
+
16
+
5
17
## [ 0.5.1] ( https://github.com/Blobfolio/oxford_join/releases/tag/v0.5.1 ) - 2025-05-23
6
18
7
19
### Changed
Original file line number Diff line number Diff line change 1
1
# Project Dependencies
2
2
Package: oxford_join
3
- Version: 0.5.1
4
- Generated: 2025-05-24 06:41:19 UTC
3
+ Version: 0.6.0
4
+ Generated: 2025-06-01 06:47:55 UTC
5
5
6
6
This project has no dependencies.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " oxford_join"
3
- version = " 0.5.1 "
3
+ version = " 0.6.0 "
4
4
authors = [
" Josh Stoik <[email protected] >" ]
5
5
edition = " 2024"
6
- rust-version = " 1.85 "
6
+ rust-version = " 1.87 "
7
7
description = " Join string slices with Oxford Commas!"
8
8
license = " WTFPL"
9
9
repository = " https://github.com/Blobfolio/oxford_join"
Original file line number Diff line number Diff line change @@ -134,10 +134,7 @@ use alloc::{
134
134
} ,
135
135
string:: String ,
136
136
} ;
137
- use core:: {
138
- borrow:: Borrow ,
139
- ops:: Deref ,
140
- } ;
137
+ use core:: borrow:: Borrow ;
141
138
142
139
143
140
@@ -198,12 +195,6 @@ impl Borrow<str> for Conjunction<'_> {
198
195
fn borrow ( & self ) -> & str { self . as_str ( ) }
199
196
}
200
197
201
- impl Deref for Conjunction < ' _ > {
202
- type Target = str ;
203
- #[ inline]
204
- fn deref ( & self ) -> & Self :: Target { self . as_str ( ) }
205
- }
206
-
207
198
impl core:: fmt:: Display for Conjunction < ' _ > {
208
199
#[ inline]
209
200
fn fmt ( & self , f : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
You can’t perform that action at this time.
0 commit comments