diff --git a/Documentation/RELEASE_NOTES_0.35.0.md b/Documentation/RELEASE_NOTES_0.35.0.md index 25b7f08..7031fcc 100644 --- a/Documentation/RELEASE_NOTES_0.35.0.md +++ b/Documentation/RELEASE_NOTES_0.35.0.md @@ -1 +1,3 @@ # What's new in 0.35.0 + +* Math operations now clonable diff --git a/src/math.rs b/src/math.rs index 42f6200..b1a9c73 100644 --- a/src/math.rs +++ b/src/math.rs @@ -5,6 +5,7 @@ use crate::types::*; extern crate json_value_merge; use json_value_merge::Merge; +#[derive(Debug, Clone)] pub enum Ops { Add, Sub,