mirror of
https://github.com/danog/strum.git
synced 2024-11-26 12:04:38 +01:00
updating to 0.19.2 to fix regression 104
This commit is contained in:
parent
47eda75e8d
commit
520b2e6305
@ -1,8 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## 0.20.0
|
||||
## 0.19.2
|
||||
|
||||
* Fixes [#104](https://github.com/Peternator7/strum/issues/104). PR [#105](https://github.com/Peternator7/strum/issues/105)
|
||||
|
||||
## 0.19.1
|
||||
|
||||
* **Breaking Change**: EnumVariantNames now properly adjusts to the `to_string` and `serialize` attributes.
|
||||
* There's a regression in this release that may make strum imcompatible with other plugins if those
|
||||
plugins use non-rust syntax in their attributes. [#104](https://github.com/Peternator7/strum/issues/104)
|
||||
|
||||
## 0.19.0
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "strum"
|
||||
version = "0.19.1"
|
||||
version = "0.19.2"
|
||||
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
|
||||
license = "MIT"
|
||||
|
||||
@ -14,10 +14,10 @@ repository = "https://github.com/Peternator7/strum"
|
||||
readme = "../README.md"
|
||||
|
||||
[dependencies]
|
||||
strum_macros = { path = "../strum_macros", optional = true, version = "0.19.0" }
|
||||
strum_macros = { path = "../strum_macros", optional = true, version = "0.19.2" }
|
||||
|
||||
[dev-dependencies]
|
||||
strum_macros = { path = "../strum_macros", version = "0.19.0" }
|
||||
strum_macros = { path = "../strum_macros", version = "0.19.2" }
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "Peternator7/strum" }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "strum_macros"
|
||||
version = "0.19.1"
|
||||
version = "0.19.2"
|
||||
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
|
||||
license = "MIT"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user