This commit is contained in:
Andy Green 2016-09-15 03:07:35 +08:00
parent 1f02bd2e66
commit 5a247a57d2
3 changed files with 30 additions and 4 deletions

View file

@ -10,11 +10,11 @@ set(PACKAGE "libwebsockets")
set(CPACK_PACKAGE_NAME "${PACKAGE}")
set(CPACK_PACKAGE_VERSION_MAJOR "2")
set(CPACK_PACKAGE_VERSION_MINOR "0")
set(CPACK_PACKAGE_VERSION_PATCH "2")
set(CPACK_PACKAGE_VERSION_PATCH "3")
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}")
set(SOVERSION "8")
set(SOVERSION "8.1")
set(CPACK_SOURCE_GENERATOR "TGZ")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
set(VERSION "${CPACK_PACKAGE_VERSION}")

View file

@ -1,6 +1,29 @@
Changelog
---------
v2.0.3
======
NB New api lws_snprintf() -> SONAME bump to 8.1
Fixes
-----
1) Remove duplicate close in one error path
2) Build fix for ecdh and non-openssl
3) Client confirms server cert
4) SNI falls back to match wildcard DNS names (this is later checked against
the cert for actual validity at SSL level)
5) Fix one error path on vhost adopt_socket where we are left on timeout list
6) lws_snprintf() - fix critical problem with snprintf not truncating buffer
lengths (it truncated the buffer write) as (wrongly) expected
v2.0.2
======

View file

@ -1,5 +1,5 @@
Name: libwebsockets
Version: 2.0.2
Version: 2.0.3
Release: 1%{?dist}
Summary: Websocket Server and Client Library
@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/libwebsockets-test-echo
/usr/bin/libwebsockets-test-fraggle
/usr/bin/libwebsockets-test-fuzxy
/%{_libdir}/libwebsockets.so.8
/%{_libdir}/libwebsockets.so.8.1
/%{_libdir}/libwebsockets.so
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfig.cmake
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfigVersion.cmake
@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT
/%{_libdir}/pkgconfig/libwebsockets.pc
%changelog
* Thu Sep 15 2016 Andy Green <andy@warmcat.com> 2.0.3-1
- MAJOR Upstream 2.0.3 release
* Mon Jun 06 2016 Andy Green <andy@warmcat.com> 2.0.2-1
- MINOR Upstream 2.0.2 release