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-07-02 16:28:46 -0700
commitc5c1aa6bc78b6ebc346befe9f4b434401a683a59 (patch)
treefd5a92d7b89825d68496306d81dc7ebd2b2f1981 /CHANGELOG.md
parent1c358416737f8e7d41d6858000ce07680df7afee (diff)
downloadspray-json-derivation-c5c1aa6bc78b6ebc346befe9f4b434401a683a59.tar.gz
spray-json-derivation-c5c1aa6bc78b6ebc346befe9f4b434401a683a59.tar.bz2
spray-json-derivation-c5c1aa6bc78b6ebc346befe9f4b434401a683a59.zip
Make inclusion of None values as null optional
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bdcd86..bf4dbd7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# Version 0.5.0
+
+None values are no longer written to objects by default. This is
+configurable by overriding `printNull` in DerivedFormats.
+
# Version 0.4.7
Upgrade Magnolia from 0.7.1-1 to 0.8.0-1.
@@ -5,7 +10,7 @@
# 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:
+ parameterized types. I.e. it is now possible to derive the following:
```
class A[B](b: B)
implicit def fmt[B: JsonFormat] = jsonFormat[A]