Signed-off-by: Andy Green <andy@warmcat.com>
This commit is contained in:
Andy Green 2016-03-22 09:19:32 +08:00 committed by Andy Green
parent 7dbdb776d9
commit 18c328a631
3 changed files with 25 additions and 3 deletions

View file

@ -10,7 +10,7 @@ set(PACKAGE "libwebsockets")
set(CPACK_PACKAGE_NAME "${PACKAGE}")
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "7")
set(CPACK_PACKAGE_VERSION_PATCH "3")
set(CPACK_PACKAGE_VERSION_PATCH "4")
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
set(CPACK_PACKAGE_VENDOR "andy@warmcat.com")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PACKAGE} ${PACKAGE_VERSION}")

View file

@ -1,10 +1,29 @@
Changelog
---------
v1.7.4
======
NB: No API change since v1.7.0
Fixes
-----
1) MINOR: d9n't send ext hdr if no exts to discuss
1) MINOR: don't send ext hdr if no exts to discuss
2) MINOR: libuv + libev small fixes
3) MINOR: some windows build environments have no snprintf
4) MINOR: cmake adapts better to ecdh.h cmake situation
5) MINOR: client missed WSI_CREATE callback
6) MINOR: base64 decode api worked fine for all ws key handling, however
it was broken for some general decode if user code wanted to use it.
7) MINOR: add optimized parsing path for bulk incoming ws data
v1.7.3
======

View file

@ -1,5 +1,5 @@
Name: libwebsockets
Version: 1.7.3
Version: 1.7.4
Release: 1%{?dist}
Summary: Websocket Server and Client Library
@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT
/%{_libdir}/pkgconfig/libwebsockets.pc
%changelog
* Mon Mar 22 2016 Andy Green <andy@warmcat.com> 1.7.4-1
- MINOR fixes Upstream 1.7.4 release (see changelog)
* Mon Feb 29 2016 Andy Green <andy@warmcat.com> 1.7.3-1
- MAJOR fixes Upstream 1.7.3 release (see changelog)