diff options
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.in | 8 |
3 files changed, 11 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index 91f49a3a8b..f7f31de4a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,8 +54,8 @@ release: cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.css doc/reference/html/*.devhelp $(htmldir)/reference/ git-push --tags git-push - scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/ - ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/ && sha1sum *.tar.bz2 > CHECKSUMS' + scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/devel/ + ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS' build-aux/gnupload --to alpha.gnu.org:gnutls $(distdir).tar.bz2 cd $(htmldir) && \ cvs add -kb releases/$(distdir).tar.bz2 \ @@ -3,6 +3,11 @@ Copyright (C) 2004, 2005, 2006, 2007, 2008 Simon Josefsson Copyright (C) 2000, 2001, 2002, 2003, 2004 Nikos Mavrogiannopoulos See the end for copying conditions. +* Version 2.5.0 (unreleased) + +** API and ABI modifications: +No changes since last version. + * Version 2.4.0 (released 2008-06-19) ** Major changes compared to the v2.2 branch: diff --git a/configure.in b/configure.in index ed280b1bb0..53439546a4 100644 --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ dnl Process this file with autoconf to produce a configure script. # USA AC_PREREQ(2.61) -AC_INIT([GnuTLS], [2.4.0], [bug-gnutls@gnu.org]) +AC_INIT([GnuTLS], [2.5.0], [bug-gnutls@gnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.10 dist-bzip2]) @@ -32,9 +32,9 @@ AM_CONFIG_HEADER(config.h) # Interfaces changed/added/removed: CURRENT++ REVISION=0 # Interfaces added: AGE++ # Interfaces removed: AGE=0 -AC_SUBST(LT_CURRENT, 30) -AC_SUBST(LT_REVISION, 4) -AC_SUBST(LT_AGE, 4) +AC_SUBST(LT_CURRENT, 31) +AC_SUBST(LT_REVISION, 0) +AC_SUBST(LT_AGE, 5) # Used when creating the Windows libgnutls-XX.def files. SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}` |