expressive/CHANGELOG.md
Sebastian Schmidt 9283d5412f Rename Context to ContextMut and Configuration to Context
Get rid of two different words for the same concept.

Relates to #22
2019-03-27 18:09:33 +01:00

1.5 KiB

Change Log

Unreleased

Added

  • Add the ContextMut trait, that is a manipulable configuration/context
  • Add ContextNotManipulable error variant for the EmptyContext

Removed

Changed

  • Get rid of some unwraps to improve safety
  • Rename Configuration to Context
  • Rename HashMapConfiguration to HashMapContext and EmptyConfiguration to EmptyContext

Fixed

Deprecated

1.2.0 - 2019-03-23

Added

  • Add serde feature
  • Implement serde::de::Deserialize for Node
  • Document serde usage
  • Add custom error type with a String message

Changed

  • Highlighting in documentation

1.1.0 - 2019-03-20

Added

  • Internal aliases IntType and FloatType used by the Value enum are now public
  • Type alias TupleType used to represent tuples was added
  • Error types like Error::ExpectedInt for expecting each value type were added
  • Shortcut functions like eval_int or eval_int_with_configuration to evaluate directly into a value type were added
  • Documentation for the shortcut functions was added
  • Functions to decompose Values were added and documented

Removed

  • Integration tests were removed from shipped crate

Fixed

  • Wording of some documentation items was changed to improve readability

1.0.0 - 2019-03-20

  • First stable release