diff --git a/CHANGES.md b/CHANGES.md index 92b33be..3dcc3b8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## 0.0.3 (2018-10-14) +## 1.0.0 (2018-10-14) * Warning: encode function no longer truncates messages to 1024 bytes by default * split message part into tag and content (#20, by @hannesm) diff --git a/src/syslog_message.mli b/src/syslog_message.mli index 1bf8d61..054d8a9 100644 --- a/src/syslog_message.mli +++ b/src/syslog_message.mli @@ -91,7 +91,7 @@ val decode : ctx:ctx -> string -> (t, [> Rresult.R.msg ]) result (** [encode ~len t] is [data], the encoded syslog message [t], truncated to [len] bytes. If [len] is 0 the output is not truncated. - {e Warning:} Since version 0.0.3, messages are no longer truncated to 1024 + {e Warning:} Since version 1.0.0, messages are no longer truncated to 1024 bytes by default. *) val encode : ?len:int -> t -> string