summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md11
-rw-r--r--appinfo/info.xml2
2 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d2c04f9a..9babd800d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,18 +3,23 @@ All notable changes to this project will be documented in this file.
The format is almost based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), older entries don't fully match.
# Unreleased
-- Fix NotNullConstraintViolation when sharing news items with users (#1406)
## [16.x.x]
### Changed
-- added feed search (#1402)
### Fixed
-- removed reference for deleted repair-steps (#1399)
+
## [15.x.x]
### Changed
### Fixed
# Releases
+## [16.0.0-beta3] - 2021-06-16
+### Changed
+- added feed search (#1402)
+### Fixed
+- removed reference for deleted repair-steps (#1399)
+- Fix NotNullConstraintViolation when sharing news items with users (#1406)
+
## [16.0.0-beta2] - 2021-06-01
### Changed
- Allow installation on Nextcloud v22
diff --git a/appinfo/info.xml b/appinfo/info.xml
index e8ec35b1d..cae61f028 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@ Create a [bug report](https://github.com/nextcloud/news/issues/new/choose)
Create a [feature request](https://github.com/nextcloud/news/discussions/new)
Report a [feed issue](https://github.com/nextcloud/news/discussions/new)
]]></description>
- <version>16.0.0-beta2</version>
+ <version>16.0.0-beta3</version>
<licence>agpl</licence>
<author>Benjamin Brahmer</author>
<author>Sean Molenaar</author>
d-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<!--
title: "BUFFER"
custom_edit_url: https://github.com/netdata/netdata/edit/master/libnetdata/buffer/README.md
sidebar_label: "BUFFER library"
learn_status: "Published"
learn_topic_type: "Tasks"
learn_rel_path: "Developers/libnetdata"
-->

# BUFFER

`BUFFER` is a convenience library for working with strings in `C`.
Mainly, `BUFFER`s eliminate the need for tracking the string length, thus providing
a safe alternative for string operations.

Also, they are super fast in printing and appending data to the string and its `buffer_strlen()`
is just a lookup (it does not traverse the string).

Netdata uses `BUFFER`s for preparing web responses and buffering data to be sent upstream or
to external databases.