File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.26.1
4+
5+ * [ #325 ] ( https://github.com/Peternator7/strum/pull/325 ) : use ` core ` instead of ` std ` in VariantArray.
6+
37## 0.26.0
48
59### Breaking Changes
Original file line number Diff line number Diff line change 11[package ]
22name = " strum"
3- version = " 0.26.0 "
3+ version = " 0.26.1 "
44edition = " 2018"
55authors = [" Peter Glotfelty <peter.glotfelty@microsoft.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ pub trait VariantNames {
223223/// enums with inner data in one or more variants. Consider using it alongside
224224/// [`EnumDiscriminants`] if you require inner data but still want to have an
225225/// static array of variants.
226- pub trait VariantArray : core:: marker:: Sized + ' static {
226+ pub trait VariantArray : :: core:: marker:: Sized + ' static {
227227 const VARIANTS : & ' static [ Self ] ;
228228}
229229
Original file line number Diff line number Diff line change 11[package ]
22name = " strum_macros"
3- version = " 0.26.0 "
3+ version = " 0.26.1 "
44edition = " 2018"
55authors = [" Peter Glotfelty <peter.glotfelty@microsoft.com>" ]
66license = " MIT"
@@ -26,4 +26,4 @@ rustversion = "1.0"
2626syn = { version = " 2.0" , features = [" parsing" , " extra-traits" ] }
2727
2828[dev-dependencies ]
29- strum = { path = " ../strum" , version = " 0.25 " }
29+ strum = { path = " ../strum" , version = " 0.26 " }
You can’t perform that action at this time.
0 commit comments