version 0.4.13
This commit is contained in:
parent
25946edf90
commit
2994fd6792
6 changed files with 36 additions and 5 deletions
4
Makefile
4
Makefile
|
@ -7,10 +7,10 @@
|
|||
# Master version number
|
||||
VER_MAJOR := 0
|
||||
VER_MINOR := 4
|
||||
VER_PATCH := 12
|
||||
VER_PATCH := 13
|
||||
|
||||
PROJECT := re
|
||||
VERSION := 0.4.12
|
||||
VERSION := 0.4.13
|
||||
|
||||
MK := mk/re.mk
|
||||
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
libre (0.4.13) unstable; urgency=low
|
||||
|
||||
* version 0.4.13
|
||||
|
||||
-- Alfred E. Heggestad <aeh@db.org> Wed, 01 July 2015 20:00:00 +0100
|
||||
|
||||
libre (0.4.12) unstable; urgency=low
|
||||
|
||||
* version 0.4.12
|
||||
|
|
|
@ -1,3 +1,24 @@
|
|||
2015-07-01 Alfred E. Heggestad <aeh@db.org>
|
||||
|
||||
* Version 0.4.13
|
||||
|
||||
* aes: added support for CommonCrypto API
|
||||
|
||||
* fmt: pl_float() handles negative numbers now
|
||||
|
||||
* hmac: added support for CommonCrypto API
|
||||
|
||||
* main: added support for async I/O method `kqueue'
|
||||
this is now the default on platforms like OSX/iOS,
|
||||
FreeBSD, NetBSD and OpenBSD.
|
||||
|
||||
* mem: added mem_reallocarray(), inspired by OpenBSD
|
||||
|
||||
* net: added net_default_gateway_get()
|
||||
|
||||
* tls: use RSA_generate_key_ex() instead of deprecated functions
|
||||
|
||||
|
||||
2015-03-16 Alfred E. Heggestad <aeh@db.org>
|
||||
|
||||
* Version 0.4.12
|
||||
|
|
|
@ -3,5 +3,9 @@
|
|||
*
|
||||
* Development documentation for libre
|
||||
*
|
||||
*
|
||||
* \include README
|
||||
*
|
||||
*
|
||||
* \section modules modules
|
||||
*/
|
||||
|
|
|
@ -82,7 +82,7 @@ WARN_LOGFILE =
|
|||
#---------------------------------------------------------------------------
|
||||
# configuration options related to the input files
|
||||
#---------------------------------------------------------------------------
|
||||
INPUT = include src
|
||||
INPUT = include src docs
|
||||
FILE_PATTERNS = *.c \
|
||||
*.h \
|
||||
*.dox
|
||||
|
@ -93,7 +93,7 @@ EXCLUDE = test.c \
|
|||
|
||||
EXCLUDE_SYMLINKS = NO
|
||||
EXCLUDE_PATTERNS = */.svn/*
|
||||
EXAMPLE_PATH =
|
||||
EXAMPLE_PATH = docs
|
||||
EXAMPLE_PATTERNS = *
|
||||
EXAMPLE_RECURSIVE = NO
|
||||
IMAGE_PATH =
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
%define name re
|
||||
%define ver 0.4.12
|
||||
%define ver 0.4.13
|
||||
%define rel 1
|
||||
|
||||
Summary: Generic library for real-time communications with async IO support
|
||||
|
|
Loading…
Add table
Reference in a new issue