From e767091d649df311dd221e243ab2ce54776ae779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:23:41 +0100 Subject: New upstream version 1.0.2 --- .travis.yml | 2 +- changelog | 6 ++++++ configure.ac | 2 +- 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} diff --git a/changelog b/changelog index 518c4fb..20d6aad 100644 --- a/changelog +++ b/changelog @@ -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 = -- cgit v1.2.3 From c4185fc61feecc165faff86233705ba9a462d59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:33:16 +0100 Subject: New upstream release --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 6b9c37a..c0fa0ed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bitz-server (1.0.2-1) UNRELEASED; urgency=medium + + * New upstream release: + - Make builds reproducible (Closes: #882112). + + -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 + bitz-server (1.0.0-5) unstable; urgency=medium * Renew symbols files. -- cgit v1.2.3 From 1add16dc4cc024d32b2ffa00f8b5f341479d55cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:38:00 +0100 Subject: Change my mail address --- debian/changelog | 3 +++ debian/control | 2 +- debian/copyright | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index c0fa0ed..7ff78c6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,9 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium * New upstream release: - Make builds reproducible (Closes: #882112). + * Change to my new mail address: + - debian/control, + - debian/copyright -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 diff --git a/debian/control b/debian/control index fa5188a..265beb9 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: bitz-server Section: net Priority: optional -Maintainer: Jörg Frings-Fürst +Maintainer: Jörg Frings-Fürst Uploaders: Uditha Atukorala Build-Depends: debhelper (>= 10), diff --git a/debian/copyright b/debian/copyright index d26971a..017ff48 100644 --- a/debian/copyright +++ b/debian/copyright @@ -7,9 +7,9 @@ Copyright: 2012-2014 Uditha Atukorala License: GPL-3+ Files: debian/* -Copyright: 2014-2016 Jörg Frings-Fürst +Copyright: 2014-2016 Jörg Frings-Fürst License: GPL-3+ - + License: GPL-3+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -- cgit v1.2.3 From 9ca0b2ddc91f69d89915bd8d584f7d4e0165fe38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 15:50:47 +0100 Subject: Declare compliance with Debian Policy 4.1.2.0 --- debian/changelog | 2 ++ debian/control | 2 +- debian/copyright | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7ff78c6..143891d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium * Change to my new mail address: - debian/control, - debian/copyright + * debian/copyright: Bump years to 2017. + * Declare compliance with Debian Policy 4.1.2.0. (No changes needed). -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 diff --git a/debian/control b/debian/control index 265beb9..843180f 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Build-Depends: libpython-dev Build-Depends-Indep: doxygen -Standards-Version: 4.1.1 +Standards-Version: 4.1.2.0 Homepage: https://github.com/uditha-atukorala/bitz-server Vcs-Git: https://anonscm.debian.org/cgit/collab-maint/bitz-server.git Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/bitz-server.git diff --git a/debian/copyright b/debian/copyright index 017ff48..443ff37 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,11 +3,11 @@ Upstream-Name: bitz-server Source: https://github.com/uditha-atukorala/bitz-server Files: * -Copyright: 2012-2014 Uditha Atukorala +Copyright: 2012-2017 Uditha Atukorala License: GPL-3+ Files: debian/* -Copyright: 2014-2016 Jörg Frings-Fürst +Copyright: 2014-2017 Jörg Frings-Fürst License: GPL-3+ License: GPL-3+ -- cgit v1.2.3