shishi-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU shishi branch, master, updated. shishi-0-0-43-3-ga8583a5


From: Simon Josefsson
Subject: [SCM] GNU shishi branch, master, updated. shishi-0-0-43-3-ga8583a5
Date: Mon, 29 Mar 2010 23:57:26 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU shishi".

http://git.savannah.gnu.org/cgit/shishi.git/commit/?id=a8583a5031f77b07fa2eae4eef49770684b6448d

The branch, master has been updated
       via  a8583a5031f77b07fa2eae4eef49770684b6448d (commit)
       via  58ba57416d4c5a84eda6965eeea2ca909f80362b (commit)
       via  0c4e28c37f61849f800c70fa6ce20266cab152e3 (commit)
      from  2824c610b3855d5dcc6af5697ff058268327bf1c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a8583a5031f77b07fa2eae4eef49770684b6448d
Author: Simon Josefsson <address@hidden>
Date:   Tue Mar 30 01:57:10 2010 +0200

    Prepare for non-alpha upload.

commit 58ba57416d4c5a84eda6965eeea2ca909f80362b
Author: Simon Josefsson <address@hidden>
Date:   Tue Mar 30 01:56:56 2010 +0200

    Bump versions.

commit 0c4e28c37f61849f800c70fa6ce20266cab152e3
Author: Simon Josefsson <address@hidden>
Date:   Tue Mar 30 01:55:39 2010 +0200

    Update.

-----------------------------------------------------------------------

Summary of changes:
 NEWS             |    5 ++++
 cfg.mk           |    2 +-
 configure.ac     |    8 +++---
 doc/announce.txt |   55 ++++++++++++++++++++++++++++++-----------------------
 lib/shishi.h     |    2 +-
 5 files changed, 42 insertions(+), 30 deletions(-)

diff --git a/NEWS b/NEWS
index c127d36..0d44c2a 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,11 @@ Shishi NEWS -- History of user-visible changes.                
 -*- outline -*-
 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Simon 
Josefsson
 See the end for copying conditions.
 
+* Version 1.0.0 (unreleased)
+
+** API and ABI modifications:
+No changes since last version.
+
 * Version 0.0.43 (released 2010-03-30)
 
 ** libshishi, shishid: Make IPv6 support work.
diff --git a/cfg.mk b/cfg.mk
index 8e4b9a2..724651e 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -85,7 +85,7 @@ prepare:
 upload:
        git push
        git push --tags
-       build-aux/gnupload --to alpha.gnu.org:shishi $(distdir).tar.gz
+       build-aux/gnupload --to ftp.gnu.org:shishi $(distdir).tar.gz
        cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/$(PACKAGE)/
 
 web:
diff --git a/configure.ac b/configure.ac
index 2a86a1b..52e0c08 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,15 +19,15 @@
 # Floor, Boston, MA 02110-1301, USA.
 
 AC_PREREQ(2.61)
-AC_INIT([GNU Shishi], [0.0.43], address@hidden)
+AC_INIT([GNU Shishi], [1.0.0], address@hidden)
 
 # Library code modified:                              REVISION++
 # Interfaces changed/added/removed:   CURRENT++       REVISION=0
 # Interfaces added:                             AGE++
 # Interfaces removed:                           AGE=0
-AC_SUBST(LT_CURRENT, 0)
-AC_SUBST(LT_REVISION, 43)
-AC_SUBST(LT_AGE, 0)
+AC_SUBST(LT_CURRENT, 1)
+AC_SUBST(LT_REVISION, 0)
+AC_SUBST(LT_AGE, 1)
 
 # Used when creating libshishi-XX.def.
 SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}`
diff --git a/doc/announce.txt b/doc/announce.txt
index 42c592f..bb9e525 100644
--- a/doc/announce.txt
+++ b/doc/announce.txt
@@ -1,33 +1,31 @@
+Subject: Shishi 0.0.43 (release candidate for 1.0.0)
+To: address@hidden, address@hidden
+<#part sign=pgpmime>
+
 Shishi is an implementation of the Kerberos 5 network authentication
 system.  Shishi can be used to authenticate users in distributed
 systems.  Shishi is part of a GNU system.
 
-* Version 0.0.42 (released 2010-03-15)
+Note that we plan to release version 1.0.0 soon and this release
+should be regarded as a release candidate.  Shishi has been relatively
+stable for a long period of time, so it deserves a non-alpha release.
 
-** libshishi: Add APIs to save keys on keytab format.
-The functions are shishi_keys_to_keytab_file and
-shishi_keys_to_keytab_mem.
+* Version 0.0.43 (released 2010-03-30)
 
-** libshishi: Add APIs to retrieve/set the timestamp for a key.
-Typically only used by keytab format.  The functions are
-shishi_key_timestamp and shishi_key_timestamp_set.
+** libshishi, shishid: Make IPv6 support work.
 
-** libshishi: Add API to read several keys from a file.
-The function is shishi_keys_from_file.
+** shishid: Add --no-tls parameter to disable TLS support.
 
-** keytab2shishi: Add --reverse (-R) parameter to write Keytab files.
-This allows you to use create Keytab files from your Shishi hostkeys.
+** libshishi, shishid: STARTTLS extension negotiation now follows RFC 5021.
 
-** libshishi: Fix bug where '3des' is parsed as 'des'.
+** doc: Fix spelling typos noticed by lintian.
 
-** minitasn1: Internal copy upgraded to GNU Libtasn1 v2.5.
+** Update gnulib files.
+Including moving the 'stat' module from db/ to gl/ so that libshishi
+builds properly.
 
 ** API and ABI modifications:
-shishi_key_timestamp: ADD.
-shishi_key_timestamp_set: ADD.
-shishi_keys_from_file: ADD.
-shishi_keys_to_keytab_file: ADD.
-shishi_keys_to_keytab_mem: ADD.
+No changes since last version.
 
 Shishi contains a library ('libshishi') that can be used by application
 developers to add support for Kerberos 5.  Shishi contains a command
@@ -80,12 +78,16 @@ invited to join our help-shishi mailing list, see:
 <http://lists.gnu.org/mailman/listinfo/help-shishi>.
 
 Here are the compressed sources (4.1MB):
-  ftp://alpha.gnu.org/gnu/shishi/shishi-0.0.42.tar.gz
-  http://alpha.gnu.org/gnu/shishi/shishi-0.0.42.tar.gz
+  ftp://alpha.gnu.org/gnu/shishi/shishi-0.0.43.tar.gz
+  http://alpha.gnu.org/gnu/shishi/shishi-0.0.43.tar.gz
 
 Here are GPG detached signatures signed using key 0xB565716F:
-  ftp://alpha.gnu.org/gnu/shishi/shishi-0.0.42.tar.gz.sig
-  http://alpha.gnu.org/gnu/shishi/shishi-0.0.42.tar.gz.sig
+  ftp://alpha.gnu.org/gnu/shishi/shishi-0.0.43.tar.gz.sig
+  http://alpha.gnu.org/gnu/shishi/shishi-0.0.43.tar.gz.sig
+
+We also provide pre-built Windows binaries:
+  http://josefsson.org/gnutls4win/shishi-0.0.43.zip
+  http://josefsson.org/gnutls4win/mingw32-shishi_0.0.43-1_all.deb
 
 Improving Shishi is costly, but you can help!  We are looking for
 organizations that find Shishi useful and wish to contribute back.  You
@@ -119,9 +121,14 @@ Here are the build reports for various platforms:
 
 Here are the SHA-1 and SHA-224 checksums:
 
-c231ebe301cc674f1b6dfbe7150efa872cb85146  shishi-0.0.42.tar.gz
+43a64c126f3711f32089b84b62a205a162d22ddd  shishi-0.0.43.tar.gz
+5bc6a30bb79d091e963d872ae75b885afffe11024a3ad37000eaaaa0  shishi-0.0.43.tar.gz
+
+be24fbed8d518b3d67c3ee72013780c50ab9fa53  shishi-0.0.43.zip
+d837e8074647096dbd21061ff124ceee368f73dcf779133816cb9a7c  shishi-0.0.43.zip
 
-a20eb914976a2e606749387063c3dbf66582e6272438fb8fc3353cf2  shishi-0.0.42.tar.gz
+ebd75c7f79b00417134535d7b13f2c476052f19c  mingw32-shishi_0.0.43-1_all.deb
+609d055e2b2ae0bbb9bf46c9bcf4ad2c26bdef0f94d2ec0958f967da  
mingw32-shishi_0.0.43-1_all.deb
 
 Happy hacking,
 Simon
diff --git a/lib/shishi.h b/lib/shishi.h
index f49c5dc..cea403b 100644
--- a/lib/shishi.h
+++ b/lib/shishi.h
@@ -29,7 +29,7 @@
 #include <time.h>              /* time_t */
 #include <shishi-int.h>                /* uint32_t */
 
-#define SHISHI_VERSION "0.0.43"
+#define SHISHI_VERSION "1.0.0"
 
 # ifdef __cplusplus
 extern "C" {


hooks/post-receive
-- 
GNU shishi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]