diff options
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | changelog | 6 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | doc/doxygen.cfg.in | 4 | 
4 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 32341e9..be68f7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_install:  install:    - curl -L https://github.com/nukedzn/psocksxx/releases/download/v1.0.0/psocksxx-1.0.0.tar.gz | tar -zx -C /tmp    - cd /tmp/psocksxx-* && ./configure --prefix=/tmp/root && make && make install -  - if [ $TRAVIS_OS_NAME == linux ]; then curl -L http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz | tar -zx -C /tmp; fi +  - if [ $TRAVIS_OS_NAME == linux ]; then curl -L http://www.hyperrealm.com/packages/libconfig-1.4.10.tar.gz | tar -zx -C /tmp; fi    - if [ $TRAVIS_OS_NAME == linux ]; then cd /tmp/libconfig-* && ./configure --prefix=/tmp/root && make && make install; fi    - cd ${TRAVIS_BUILD_DIR} @@ -1,3 +1,9 @@ +1.0.2 - 19th November 2017 +	*    Fix broken v1.0.1 release + +1.0.1 - 19th November 2017 +	*    Make builds reproducible (https://bugs.debian.org/882112) +  1.0.0 - 25th November 2015  	*   [New] Configurable communication (socket) timeouts  	*   [New] Support for persistent connections diff --git a/configure.ac b/configure.ac index b88fc75..d972716 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@  # Process this file with autoconf to produce a configure script.  AC_PREREQ([2.68]) -AC_INIT([bitz-server], [1.0.0], [https://github.com/uditha-atukorala/bitz-server/issues]) +AC_INIT([bitz-server], [1.0.2], [https://github.com/uditha-atukorala/bitz-server/issues])  AC_CONFIG_AUX_DIR([aux-build])  AC_CONFIG_MACRO_DIR([aux-build/m4])  AC_CONFIG_HEADERS([include/config.h]) diff --git a/doc/doxygen.cfg.in b/doc/doxygen.cfg.in index 73bd0d1..6104f0c 100644 --- a/doc/doxygen.cfg.in +++ b/doc/doxygen.cfg.in @@ -17,7 +17,7 @@ REPEAT_BRIEF           = YES  ABBREVIATE_BRIEF       =  ALWAYS_DETAILED_SEC    = NO  INLINE_INHERITED_MEMB  = NO -FULL_PATH_NAMES        = YES +FULL_PATH_NAMES        = NO  STRIP_FROM_PATH        =  STRIP_FROM_INC_PATH    =  SHORT_NAMES            = NO @@ -102,7 +102,7 @@ INPUT                  = @top_srcdir@  INPUT_ENCODING         = UTF-8  FILE_PATTERNS          =  RECURSIVE              = YES -EXCLUDE                = @top_srcdir@/doc +EXCLUDE                = @top_srcdir@/doc @top_srcdir@/README.md  EXCLUDE_SYMLINKS       = NO  EXCLUDE_PATTERNS       =  EXCLUDE_SYMBOLS        =  | 
