From 78009828a6b95d6112a6580ece74c4069aa72ba3 Mon Sep 17 00:00:00 2001 From: dgp Date: Thu, 8 Nov 2012 14:46:42 +0000 Subject: [PATCH] Bump all release-able packages to version 1.0.0 --- tdbc/ChangeLog | 7 +++++++ tdbc/README | 2 +- tdbc/configure | 18 +++++++++--------- tdbc/configure.in | 2 +- tdbc/generic/tdbc.h | 4 ++-- tdbcmysql/ChangeLog | 6 ++++++ tdbcmysql/README | 2 +- tdbcmysql/configure | 18 +++++++++--------- tdbcmysql/configure.in | 2 +- tdbcodbc/ChangeLog | 6 ++++++ tdbcodbc/README | 2 +- tdbcodbc/configure | 18 +++++++++--------- tdbcodbc/configure.in | 2 +- tdbcpostgres/ChangeLog | 6 ++++++ tdbcpostgres/README | 2 +- tdbcpostgres/configure | 18 +++++++++--------- tdbcpostgres/configure.in | 2 +- tdbcsqlite3/ChangeLog | 8 ++++++++ tdbcsqlite3/README | 2 +- tdbcsqlite3/configure | 18 +++++++++--------- tdbcsqlite3/configure.in | 2 +- tdbcsqlite3/library/tdbcsqlite3.tcl | 2 +- 22 files changed, 91 insertions(+), 58 deletions(-) diff --git a/tdbc/ChangeLog b/tdbc/ChangeLog index 583904f..f6ccdd6 100644 --- a/tdbc/ChangeLog +++ b/tdbc/ChangeLog @@ -1,3 +1,10 @@ +2012-11-08 Don Porter + + * generic/tdbc.h: Advance version number to 1.0.0 + * configure.in: + * README: + * configure: autoconf-2.59 + 2012-08-17 Jan Nijtmans * win/nmakehlp.c: Add "-V" option, in order to be able diff --git a/tdbc/README b/tdbc/README index 981ef04..3e993a1 100644 --- a/tdbc/README +++ b/tdbc/README @@ -1,6 +1,6 @@ README: tdbc - This is the 1.0b17 source distribution of Tcl Database Connectivity + This is the 1.0.0 source distribution of Tcl Database Connectivity (TDBC). TDBC is available from a Fossil version control repository at http://tdbc.tcl.tk/ . diff --git a/tdbc/configure b/tdbc/configure index b2eff07..cf3c65e 100755 --- a/tdbc/configure +++ b/tdbc/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for tdbc 1.0b17. +# Generated by GNU Autoconf 2.59 for tdbc 1.0.0. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='tdbc' PACKAGE_TARNAME='tdbc' -PACKAGE_VERSION='1.0b17' -PACKAGE_STRING='tdbc 1.0b17' +PACKAGE_VERSION='1.0.0' +PACKAGE_STRING='tdbc 1.0.0' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -777,7 +777,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures tdbc 1.0b17 to adapt to many kinds of systems. +\`configure' configures tdbc 1.0.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -834,7 +834,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of tdbc 1.0b17:";; + short | recursive ) echo "Configuration of tdbc 1.0.0:";; esac cat <<\_ACEOF @@ -965,7 +965,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -tdbc configure 1.0b17 +tdbc configure 1.0.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -979,7 +979,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by tdbc $as_me 1.0b17, which was +It was created by tdbc $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -12130,7 +12130,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by tdbc $as_me 1.0b17, which was +This file was extended by tdbc $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -12185,7 +12185,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -tdbc config.status 1.0b17 +tdbc config.status 1.0.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/tdbc/configure.in b/tdbc/configure.in index 11d5e41..0b5c1c8 100644 --- a/tdbc/configure.in +++ b/tdbc/configure.in @@ -13,7 +13,7 @@ dnl to configure the system for the local environment. # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- -AC_INIT([tdbc], [1.0b17]) +AC_INIT([tdbc], [1.0.0]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. diff --git a/tdbc/generic/tdbc.h b/tdbc/generic/tdbc.h index 40a9f47..7361def 100644 --- a/tdbc/generic/tdbc.h +++ b/tdbc/generic/tdbc.h @@ -41,8 +41,8 @@ DLLIMPORT int Tdbc_Init(Tcl_Interp* interp); * appear near the top of configure.in. */ -#define TDBC_VERSION "1.0b17" -#define TDBC_PATCHLEVEL "1.0b17" +#define TDBC_VERSION "1.0.0" +#define TDBC_PATCHLEVEL "1.0.0" /* * Include the Stubs declarations for the public API, generated from diff --git a/tdbcmysql/ChangeLog b/tdbcmysql/ChangeLog index 739fb9e..8dc6012 100644 --- a/tdbcmysql/ChangeLog +++ b/tdbcmysql/ChangeLog @@ -1,3 +1,9 @@ +2012-11-08 Don Porter + + * configure.in: + * README: Advanced version number to 1.0.0. + * configure: autoconf 2.59 + 2012-07-26 Jan Nijtmans * generic/mysqlStubInit.c: Fix [14a8b7c3bd]: package tdbc::mysql fails diff --git a/tdbcmysql/README b/tdbcmysql/README index 412d987..f3fc324 100644 --- a/tdbcmysql/README +++ b/tdbcmysql/README @@ -1,6 +1,6 @@ README: tdbcmysql - This is the 1.0b17 source distribution of the driver for Tcl + This is the 1.0.0 source distribution of the driver for Tcl Database Connectivity (TDBC) to access MySQL databases.. TDBC and its drivers are available from a Fossil version control repository at http://tdbc.tcl.tk/ diff --git a/tdbcmysql/configure b/tdbcmysql/configure index d9d7136..06b2aaf 100755 --- a/tdbcmysql/configure +++ b/tdbcmysql/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for tdbcmysql 1.0b17. +# Generated by GNU Autoconf 2.59 for tdbcmysql 1.0.0. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='tdbcmysql' PACKAGE_TARNAME='tdbcmysql' -PACKAGE_VERSION='1.0b17' -PACKAGE_STRING='tdbcmysql 1.0b17' +PACKAGE_VERSION='1.0.0' +PACKAGE_STRING='tdbcmysql 1.0.0' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -777,7 +777,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures tdbcmysql 1.0b17 to adapt to many kinds of systems. +\`configure' configures tdbcmysql 1.0.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -834,7 +834,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of tdbcmysql 1.0b17:";; + short | recursive ) echo "Configuration of tdbcmysql 1.0.0:";; esac cat <<\_ACEOF @@ -965,7 +965,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -tdbcmysql configure 1.0b17 +tdbcmysql configure 1.0.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -979,7 +979,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by tdbcmysql $as_me 1.0b17, which was +It was created by tdbcmysql $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -13019,7 +13019,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by tdbcmysql $as_me 1.0b17, which was +This file was extended by tdbcmysql $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13074,7 +13074,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -tdbcmysql config.status 1.0b17 +tdbcmysql config.status 1.0.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/tdbcmysql/configure.in b/tdbcmysql/configure.in index 1571350..cd08f8b 100644 --- a/tdbcmysql/configure.in +++ b/tdbcmysql/configure.in @@ -18,7 +18,7 @@ dnl to configure the system for the local environment. # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- -AC_INIT([tdbcmysql], [1.0b17]) +AC_INIT([tdbcmysql], [1.0.0]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. diff --git a/tdbcodbc/ChangeLog b/tdbcodbc/ChangeLog index 501cb48..af269c9 100644 --- a/tdbcodbc/ChangeLog +++ b/tdbcodbc/ChangeLog @@ -1,3 +1,9 @@ +2012-11-08 Don Porter + + * configure.in: + * README: Advanced version number to 1.0.0. + * configure: autoconf 2.59 + 2012-07-26 Jan Nijtmans * generic/odbcStubInit.s: Make some tables "const" diff --git a/tdbcodbc/README b/tdbcodbc/README index 2132de9..c7a2e61 100644 --- a/tdbcodbc/README +++ b/tdbcodbc/README @@ -1,6 +1,6 @@ README: tdbcodbc - This is the 1.0b17 source distribution of the bridge between Tcl + This is the 1.0.0 source distribution of the bridge between Tcl Database Connectivity (TDBC) and Open Database Connectivity (ODBC), a database-neutral API layer available on all Windows systems and many others.. TDBC and its drivers are available from diff --git a/tdbcodbc/configure b/tdbcodbc/configure index 9745cb6..15946c7 100755 --- a/tdbcodbc/configure +++ b/tdbcodbc/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for tdbcodbc 1.0b17. +# Generated by GNU Autoconf 2.59 for tdbcodbc 1.0.0. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='tdbcodbc' PACKAGE_TARNAME='tdbcodbc' -PACKAGE_VERSION='1.0b17' -PACKAGE_STRING='tdbcodbc 1.0b17' +PACKAGE_VERSION='1.0.0' +PACKAGE_STRING='tdbcodbc 1.0.0' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -777,7 +777,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures tdbcodbc 1.0b17 to adapt to many kinds of systems. +\`configure' configures tdbcodbc 1.0.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -834,7 +834,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of tdbcodbc 1.0b17:";; + short | recursive ) echo "Configuration of tdbcodbc 1.0.0:";; esac cat <<\_ACEOF @@ -965,7 +965,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -tdbcodbc configure 1.0b17 +tdbcodbc configure 1.0.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -979,7 +979,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by tdbcodbc $as_me 1.0b17, which was +It was created by tdbcodbc $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -13003,7 +13003,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by tdbcodbc $as_me 1.0b17, which was +This file was extended by tdbcodbc $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13058,7 +13058,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -tdbcodbc config.status 1.0b17 +tdbcodbc config.status 1.0.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/tdbcodbc/configure.in b/tdbcodbc/configure.in index e7c424f..691e4ec 100644 --- a/tdbcodbc/configure.in +++ b/tdbcodbc/configure.in @@ -18,7 +18,7 @@ dnl to configure the system for the local environment. # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- -AC_INIT([tdbcodbc], [1.0b17]) +AC_INIT([tdbcodbc], [1.0.0]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. diff --git a/tdbcpostgres/ChangeLog b/tdbcpostgres/ChangeLog index 842c9ae..30c8012 100644 --- a/tdbcpostgres/ChangeLog +++ b/tdbcpostgres/ChangeLog @@ -1,3 +1,9 @@ +2012-11-08 Don Porter + + * configure.in: + * README: Advanced version number to 1.0.0. + * configure: autoconf 2.59 + 2012-07-26 Jan Nijtmans * generic/pqStubInit.s: Make some tables "const" diff --git a/tdbcpostgres/README b/tdbcpostgres/README index 9f4c87a..53ba2f0 100644 --- a/tdbcpostgres/README +++ b/tdbcpostgres/README @@ -1,6 +1,6 @@ README: tdbcpostgres - This is the 1.0b17 source distribution of the driver for Tcl + This is the 1.0.0 source distribution of the driver for Tcl Database Connectivity (TDBC) to access Postgres databases. TDBC and its drivers are available from a Fossil version control repository at http://tdbc.tcl.tk/ diff --git a/tdbcpostgres/configure b/tdbcpostgres/configure index ff1b143..cbcd2e5 100755 --- a/tdbcpostgres/configure +++ b/tdbcpostgres/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for tdbcpostgres 1.0b17. +# Generated by GNU Autoconf 2.59 for tdbcpostgres 1.0.0. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='tdbcpostgres' PACKAGE_TARNAME='tdbcpostgres' -PACKAGE_VERSION='1.0b17' -PACKAGE_STRING='tdbcpostgres 1.0b17' +PACKAGE_VERSION='1.0.0' +PACKAGE_STRING='tdbcpostgres 1.0.0' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -777,7 +777,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures tdbcpostgres 1.0b17 to adapt to many kinds of systems. +\`configure' configures tdbcpostgres 1.0.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -834,7 +834,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of tdbcpostgres 1.0b17:";; + short | recursive ) echo "Configuration of tdbcpostgres 1.0.0:";; esac cat <<\_ACEOF @@ -965,7 +965,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -tdbcpostgres configure 1.0b17 +tdbcpostgres configure 1.0.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -979,7 +979,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by tdbcpostgres $as_me 1.0b17, which was +It was created by tdbcpostgres $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -13165,7 +13165,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by tdbcpostgres $as_me 1.0b17, which was +This file was extended by tdbcpostgres $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13220,7 +13220,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -tdbcpostgres config.status 1.0b17 +tdbcpostgres config.status 1.0.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/tdbcpostgres/configure.in b/tdbcpostgres/configure.in index 8eb83b5..5807f6d 100644 --- a/tdbcpostgres/configure.in +++ b/tdbcpostgres/configure.in @@ -18,7 +18,7 @@ dnl to configure the system for the local environment. # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- -AC_INIT([tdbcpostgres], [1.0b17]) +AC_INIT([tdbcpostgres], [1.0.0]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. diff --git a/tdbcsqlite3/ChangeLog b/tdbcsqlite3/ChangeLog index 8ce5a9c..c2a9734 100644 --- a/tdbcsqlite3/ChangeLog +++ b/tdbcsqlite3/ChangeLog @@ -1,3 +1,11 @@ +2012-11-08 Don Porter + + * configure.in: + * README: + * library/tdbcsqlite3.tcl: + Advanced version number to 1.0.0. + * configure: autoconf-2.59 + 2012-09-24 Harald Oehlmann * tdbcsqlite3/win/makefile.vc: Get DOTVERSION from file configure.in. diff --git a/tdbcsqlite3/README b/tdbcsqlite3/README index f885a74..7cf8357 100644 --- a/tdbcsqlite3/README +++ b/tdbcsqlite3/README @@ -1,6 +1,6 @@ README: tdbcsqlite3 - This is the 1.0b17 source distribution of the bridge between Tcl + This is the 1.0.0 source distribution of the bridge between Tcl Database Connectivity (TDBC) and SQLite3, an open-source SQL database with an in-process server. diff --git a/tdbcsqlite3/configure b/tdbcsqlite3/configure index fc0010e..1ea8a62 100755 --- a/tdbcsqlite3/configure +++ b/tdbcsqlite3/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for tdbcsqlite3 1.0b17. +# Generated by GNU Autoconf 2.59 for tdbcsqlite3 1.0.0. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='tdbcsqlite3' PACKAGE_TARNAME='tdbcsqlite3' -PACKAGE_VERSION='1.0b17' -PACKAGE_STRING='tdbcsqlite3 1.0b17' +PACKAGE_VERSION='1.0.0' +PACKAGE_STRING='tdbcsqlite3 1.0.0' PACKAGE_BUGREPORT='' ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CYGPATH EXEEXT PKG_LIB_FILE PKG_STUB_LIB_FILE PKG_STUB_SOURCES PKG_STUB_OBJECTS PKG_TCL_SOURCES PKG_HEADERS PKG_INCLUDES PKG_LIBS PKG_CFLAGS TCL_VERSION TCL_PATCH_LEVEL TCL_BIN_DIR TCL_SRC_DIR TCL_LIB_FILE TCL_LIB_FLAG TCL_LIB_SPEC TCL_STUB_LIB_FILE TCL_STUB_LIB_FLAG TCL_STUB_LIB_SPEC CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC OBJEXT CLEANFILES TCL_LIBS TCL_DEFS TCL_EXTRA_CFLAGS TCL_LD_FLAGS TCL_SHLIB_LD_LIBS tdbc_VERSION tdbc_BIN_DIR tdbc_SRC_DIR tdbc_LIB_FILE tdbc_LIB_SPEC tdbc_STUB_LIB_FILE tdbc_STUB_LIB_SPEC tdbc_STUB_LIB_PATH TCL_MAJOR_VERSION TCL_MINOR_VERSION TCLSH_PROG LIBOBJS LTLIBOBJS' @@ -736,7 +736,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures tdbcsqlite3 1.0b17 to adapt to many kinds of systems. +\`configure' configures tdbcsqlite3 1.0.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -793,7 +793,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of tdbcsqlite3 1.0b17:";; + short | recursive ) echo "Configuration of tdbcsqlite3 1.0.0:";; esac cat <<\_ACEOF @@ -910,7 +910,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -tdbcsqlite3 configure 1.0b17 +tdbcsqlite3 configure 1.0.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -924,7 +924,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by tdbcsqlite3 $as_me 1.0b17, which was +It was created by tdbcsqlite3 $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -3436,7 +3436,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by tdbcsqlite3 $as_me 1.0b17, which was +This file was extended by tdbcsqlite3 $as_me 1.0.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3491,7 +3491,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -tdbcsqlite3 config.status 1.0b17 +tdbcsqlite3 config.status 1.0.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/tdbcsqlite3/configure.in b/tdbcsqlite3/configure.in index dc2185d..74a41fb 100644 --- a/tdbcsqlite3/configure.in +++ b/tdbcsqlite3/configure.in @@ -5,7 +5,7 @@ dnl to configure the system for the local environment. # # RCS: @(#) $Id: configure.in,v 1.48 2008/11/05 00:13:00 hobbs Exp $ -AC_INIT([tdbcsqlite3], [1.0b17]) +AC_INIT([tdbcsqlite3], [1.0.0]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. diff --git a/tdbcsqlite3/library/tdbcsqlite3.tcl b/tdbcsqlite3/library/tdbcsqlite3.tcl index 9bdc30a..1fb8f84 100644 --- a/tdbcsqlite3/library/tdbcsqlite3.tcl +++ b/tdbcsqlite3/library/tdbcsqlite3.tcl @@ -13,7 +13,7 @@ package require tdbc package require sqlite3 -package provide tdbc::sqlite3 1.0b17 +package provide tdbc::sqlite3 1.0.0 namespace eval tdbc::sqlite3 { namespace export connection