summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2025-05-13 18:37:14 +0200
committerGravatar Nikias Bassen2025-05-13 18:37:14 +0200
commitb8cfac2aae312225ffb9bee944a4d84dbb73fbcd (patch)
tree5617992d4aec679c90c21fe3ee8c0a1d3b3da0e5
parente255ed0727cd8734520d4e105bd2327520323b9d (diff)
downloadlibplist-b8cfac2aae312225ffb9bee944a4d84dbb73fbcd.tar.gz
libplist-b8cfac2aae312225ffb9bee944a4d84dbb73fbcd.tar.bz2
Updated NEWS for release
-rw-r--r--NEWS21
1 files changed, 21 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index be471f7..2627893 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+Version 2.7.0
+~~~~~~~~~~~~~
+
+- Changes:
+ * Add plist_new_unix_date, plist_get_unix_date_val, plist_set_unix_date_val functions
+ that work with int64_t values representing a UNIX timestamp instead of
+ using the 'MAC epoch'.
+ These new functions should be used instead of plist_new_date,
+ plist_get_date_val, and plist_set_date_val, which are now marked deprecated
+ and might be removed in a future version of libplist.
+ * Allow building the library without tool(s)
+ * Switch to more generic global initializer method
+ * json: Allow e+/E+ in exponent as per RFC 8259
+ * C++: Add more convenience functions to the interface
+ * C++: Add more type variants to different constructors and operators
+- Bugfixes:
+ * Fix segmentation fault when calling plist_sort() on an empty dictionary
+ * Fix compilation on MSVC
+ * C++: Fix bug in internal helper function of Array class
+ * C++: Fix String::GetValue memory leaking and support assignment of const char*
+
Version 2.6.0
~~~~~~~~~~~~~