mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
v4.1.0
This commit is contained in:
parent
936e1c71ce
commit
63e9699bda
6 changed files with 38 additions and 35 deletions
|
@ -337,8 +337,8 @@ set(PACKAGE "libwebsockets")
|
|||
set(CPACK_RPM_PACKAGE_LICENSE "MIT")
|
||||
set(CPACK_PACKAGE_NAME "${PACKAGE}")
|
||||
set(CPACK_PACKAGE_VERSION_MAJOR "4")
|
||||
set(CPACK_PACKAGE_VERSION_MINOR "0")
|
||||
set(CPACK_PACKAGE_VERSION_PATCH_NUMBER "99")
|
||||
set(CPACK_PACKAGE_VERSION_MINOR "1")
|
||||
set(CPACK_PACKAGE_VERSION_PATCH_NUMBER "0")
|
||||
|
||||
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH_NUMBER}-${LWS_BUILD_HASH}")
|
||||
set(CPACK_PACKAGE_RELEASE 1)
|
||||
|
@ -347,7 +347,7 @@ set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSIO
|
|||
set(CPACK_PACKAGE_VENDOR "andy@warmcat.com")
|
||||
set(CPACK_PACKAGE_CONTACT "andy@warmcat.com")
|
||||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PACKAGE} ${CPACK_PACKAGE_VERSION}")
|
||||
set(SOVERSION "16")
|
||||
set(SOVERSION "17")
|
||||
if(NOT CPACK_GENERATOR)
|
||||
if(UNIX)
|
||||
set(CPACK_GENERATOR "TGZ")
|
||||
|
|
|
@ -16,10 +16,7 @@ various scenarios, CC0-licensed (public domain) for cut-and-paste, allow you to
|
|||
News
|
||||
----
|
||||
|
||||
## v4.1.0-rc1 is available for testing
|
||||
|
||||
If you are interested in consuming released versions, please take a moment to test this
|
||||
release candidate and report any bugs so that the release can have improved quality.
|
||||
## v4.0.0 and v4.1-stable are released
|
||||
|
||||
See the [changelog](https://libwebsockets.org/git/libwebsockets/tree/changelog), summary
|
||||
|
||||
|
|
|
@ -36,45 +36,25 @@ Release Checklist
|
|||
set(CPACK_PACKAGE_VERSION_MINOR "6")
|
||||
set(CPACK_PACKAGE_VERSION_PATCH "0")
|
||||
|
||||
5) specfile
|
||||
5) Announce latest version on README.md
|
||||
|
||||
a) rpm version bump to match CMake one
|
||||
6) Make sure all new READMEs and public headers are in libwebsockets.dox
|
||||
|
||||
scripts/libwebsockets.spec
|
||||
|
||||
Version: 1.6.0
|
||||
|
||||
b) Summarize changelog
|
||||
|
||||
scripts/libwebsockets.spec
|
||||
|
||||
%changelog
|
||||
* Sun Jan 17 2016 Andrew Cooks <acooks@linux.com> 1.6.4-1
|
||||
- Bump version to 1.6.4
|
||||
- MINOR fix xyz
|
||||
|
||||
c) Use -DLWS_WITH_DISTRO_RECOMMENDED=1 then make package and adapt the .spec
|
||||
to match the file list
|
||||
|
||||
6) Announce latest version on README.md
|
||||
|
||||
7) Make sure all new READMEs and public headers are in libwebsockets.dox
|
||||
|
||||
8) signed tag
|
||||
7) signed tag
|
||||
|
||||
git tag -s vX.Y[.Z]
|
||||
|
||||
9) git
|
||||
8) git
|
||||
|
||||
a) push
|
||||
|
||||
b) final CI check, if fail delete tag, kill pushed tags, restart flow
|
||||
|
||||
10) website
|
||||
9) website
|
||||
|
||||
a) update latest tag for release branch
|
||||
|
||||
11) post-relase version bump
|
||||
10) post-relase version bump
|
||||
|
||||
Bump the PATCH part of the version to 99
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ v4.1.0
|
|||
======
|
||||
|
||||
- NEW: travis / appveyor / bintray are replaced by Sai
|
||||
https://libwebsockets.org/sai/ which for lws currently does 167 builds per
|
||||
https://libwebsockets.org/sai/ which for lws currently does 193 builds per
|
||||
git push on 16 platforms, all self-hosted. The homebrew bash scripts used
|
||||
to select Minimal examples are replaced by CTest. Platforms currently
|
||||
include Fedora/AMD/GCC, Windows/AMD/mingw32, Windows/AMD/mingw64, Android/
|
||||
|
@ -19,6 +19,12 @@ v4.1.0
|
|||
for build by it. Build options are still listed in the top level as before
|
||||
but the new way is much more maintainable.
|
||||
|
||||
- NEW: event lib support on Unix is now built into dynamically loaded plugins
|
||||
and brought in at runtime, allowing all of the support to be built in
|
||||
isolation without conflicts, and separately packaged with individual
|
||||
dependencies. See ./READMEs/event-libs.md for details and how to force
|
||||
the old static build into lws method.
|
||||
|
||||
- NEW: Captive Portal Detection. Lws can determine if the active default
|
||||
route is able to connect to the internet, or is in a captive portal type
|
||||
situation, by trying to connect to a remote server that will respond in an
|
||||
|
|
0
include/libwebsockets/lws-gencrypto.h
Executable file → Normal file
0
include/libwebsockets/lws-gencrypto.h
Executable file → Normal file
|
@ -104,6 +104,9 @@ WARN_LOGFILE =
|
|||
INPUT = include/libwebsockets.h \
|
||||
include/libwebsockets/lws-adopt.h \
|
||||
include/libwebsockets/lws-async-dns.h \
|
||||
include/libwebsockets/lws-bb-i2c.h \
|
||||
include/libwebsockets/lws-bb-spi.h \
|
||||
include/libwebsockets/lws-button.h \
|
||||
include/libwebsockets/lws-callbacks.h \
|
||||
include/libwebsockets/lws-cgi.h \
|
||||
include/libwebsockets/lws-client.h \
|
||||
|
@ -111,8 +114,11 @@ INPUT = include/libwebsockets.h \
|
|||
include/libwebsockets/lws-dbus.h \
|
||||
include/libwebsockets/lws-detailed-latency.h \
|
||||
include/libwebsockets/lws-diskcache.h \
|
||||
include/libwebsockets/lws-display.h \
|
||||
include/libwebsockets/lws-dll2.h \
|
||||
include/libwebsockets/lws-dsh.h \
|
||||
include/libwebsockets/lws-esp32.h \
|
||||
include/libwebsockets/lws-eventlib-exports.h \
|
||||
include/libwebsockets/lws-freertos.h \
|
||||
include/libwebsockets/lws-fts.h \
|
||||
include/libwebsockets/lws-genaes.h \
|
||||
|
@ -120,25 +126,39 @@ INPUT = include/libwebsockets.h \
|
|||
include/libwebsockets/lws-genec.h \
|
||||
include/libwebsockets/lws-genhash.h \
|
||||
include/libwebsockets/lws-genrsa.h \
|
||||
include/libwebsockets/lws-gpio.h \
|
||||
include/libwebsockets/lws-http.h \
|
||||
include/libwebsockets/lws-i2c.h \
|
||||
include/libwebsockets/lws-ili9341-spi.h \
|
||||
include/libwebsockets/lws-jose.h \
|
||||
include/libwebsockets/lws-jwe.h \
|
||||
include/libwebsockets/lws-jwk.h \
|
||||
include/libwebsockets/lws-jws.h \
|
||||
include/libwebsockets/lws-led.h \
|
||||
include/libwebsockets/lws-lejp.h \
|
||||
include/libwebsockets/lws-logs.h \
|
||||
include/libwebsockets/lws-lwsac.h \
|
||||
include/libwebsockets/lws-misc.h \
|
||||
include/libwebsockets/lws-mqtt.h \
|
||||
include/libwebsockets/lws-netdev.h \
|
||||
include/libwebsockets/lws-network-helper.h \
|
||||
include/libwebsockets/lws-plugin-generic-sessions.h \
|
||||
include/libwebsockets/lws-protocols-plugins.h \
|
||||
include/libwebsockets/lws-purify.h \
|
||||
include/libwebsockets/lws-pwm.h \
|
||||
include/libwebsockets/lws-retry.h \
|
||||
include/libwebsockets/lws-ring.h \
|
||||
include/libwebsockets/lws-secure-streams-client.h \
|
||||
include/libwebsockets/lws-secure-streams.h \
|
||||
include/libwebsockets/lws-secure-streams-policy.h \
|
||||
include/libwebsockets/lws-sequencer.h \
|
||||
include/libwebsockets/lws-service.h \
|
||||
include/libwebsockets/lws-settings.h \
|
||||
include/libwebsockets/lws-sha1-base64.h \
|
||||
include/libwebsockets/lws-smd.h \
|
||||
include/libwebsockets/lws-spa.h \
|
||||
include/libwebsockets/lws-spi.h \
|
||||
include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
include/libwebsockets/lws-state.h \
|
||||
include/libwebsockets/lws-stats.h \
|
||||
include/libwebsockets/lws-struct.h \
|
||||
include/libwebsockets/lws-system.h \
|
||||
|
|
Loading…
Add table
Reference in a new issue