summaryrefslogtreecommitdiff
path: root/ReleaseNotes.md
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-14 11:44:36 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-16 21:19:46 -0700
commit851452243879498117cd7e71ac12856af44657cb (patch)
tree8542d06063bd773031c8550271f945cab624b68d /ReleaseNotes.md
parenta6cd78ec94f76feba180fa75e942bb5cdeae115f (diff)
reencode: Don't have the ReEncoderConfig member be public
Diffstat (limited to 'ReleaseNotes.md')
-rw-r--r--ReleaseNotes.md24
1 files changed, 14 insertions, 10 deletions
diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index e00bf10..bee16c4 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -4,16 +4,20 @@
User-facing changes:
- - `Number` and `RawMessage` type aliases are now available, so that
- a user of lowmemjson's native APIs does not need to import
- `encoding/json` or compat/json in order to use them.
-
- - Encoder, ReEncoder: If there was an error writing to the output
- stream, it may have returned a `*ReEncodeSyntaxError` even though
- it's not a syntax issue, or may have returned the underlying
- error without wrapping it. If there is an error writing to the
- output, Encoder and ReEncoder now return `*EncodeWriteError` and
- `*ReEncodeWriteError` respectively.
+ - Change: ReEncoder: The ReEncoderConfig struct member is no longer
+ public.
+
+ - Feature: `Number` and `RawMessage` type aliases are now
+ available, so that a user of lowmemjson's native APIs does not
+ need to import `encoding/json` or compat/json in order to use
+ them.
+
+ - Bigfix: Encoder, ReEncoder: If there was an error writing to the
+ output stream, it may have returned a `*ReEncodeSyntaxError` even
+ though it's not a syntax issue, or may have returned the
+ underlying error without wrapping it. If there is an error
+ writing to the output, Encoder and ReEncoder now return
+ `*EncodeWriteError` and `*ReEncodeWriteError` respectively.
# v0.3.5 (2023-02-10)