aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-06-29 17:56:06 -0700
committerJakob Odersky <jakob@odersky.com>2018-06-30 00:32:44 -0700
commitc4dd18f810afdb4adb85d002ad34e660fe54c146 (patch)
treedc2c3b8f51009a96c9be7cd5831e8ce3280caa6b /CHANGELOG.md
parent9545fe93dfe68974ca4bf2f9e6310216fc914e15 (diff)
downloadspray-json-derivation-c4dd18f810afdb4adb85d002ad34e660fe54c146.tar.gz
spray-json-derivation-c4dd18f810afdb4adb85d002ad34e660fe54c146.tar.bz2
spray-json-derivation-c4dd18f810afdb4adb85d002ad34e660fe54c146.zip
Fix bug in derivation of classes with type parametersv0.4.6
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa2f894..de43491 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+# Version 0.4.6
+
+- Fix a bug in the derivation macro that prevented deriving formats for
+ parameterized types. I.e. it is now possible to write derive the following:
+ ```
+ class A[B](b: B)
+ implicit def fmt[B: JsonFormat] = jsonFormat[A]
+ ```
+
+- Formatting and documentation tweaks
+
+# Version 0.4.5
+
+Fixes an issue in when serializing field names with an alternate case.
+
# Version 0.4.4
- Add utility mixins to change serialization of fieldnames, such as