This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
msgpuck (1.1.3-1) unstable; urgency=medium | ||
|
||
* Add mp_snprint() function. | ||
* Change mp_fprint() to return the number of bytes printed instead of 0. | ||
* Fix CVE-2016-9036. | ||
|
||
-- Roman Tsisyk <[email protected]> Fri, 16 Dec 2016 17:53:40 +0300 | ||
|
||
msgpuck (1.0.3-1) unstable; urgency=medium | ||
|
||
* Fix GCC 6.0 and Doxygen warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: msgpuck | ||
Version: 1.0.2 | ||
Version: 1.1.3 | ||
Release: 1%{?dist} | ||
Summary: MsgPack binary serialization library in a self-contained header | ||
Group: Development/Libraries | ||
|
@@ -66,6 +66,11 @@ install -Dpm 0644 doc/man/man3/msgpuck.h.3* %{buildroot}%{_mandir}/man3/ | |
%license LICENSE AUTHORS | ||
|
||
%changelog | ||
* Fri Dec 16 2016 Roman Tsisyk <[email protected]> 1.1.3-1 | ||
- Add mp_snprint() function. | ||
- Change mp_fprint() to return the number of bytes printed instead of 0. | ||
- Fix CVE-2016-9036. | ||
|
||
* Tue Aug 09 2016 Roman Tsisyk <[email protected]> 1.0.3-1 | ||
- Add mp_decode_strbin() and mp_decode_strbinl() | ||
- Add mp_fprint() for debug output | ||
|