summaryrefslogtreecommitdiffstats
path: root/Tests/SubDir/Examples
Commit message (Expand)AuthorAgeFilesLines
* Convert CMake-language commands to lower caseKitware Robot2012-08-133-7/+7
* ENH: preclean some warningsKen Martin2008-03-252-0/+2
* ENH: create new test to test subdir excludeBill Hoffman2004-03-095-0/+24
f3ad5_fork'>bug_13d3af3ad5_fork Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat
-rw-r--r--README.md2
-rw-r--r--changes.md2
-rw-r--r--generic/tcl.h4
-rw-r--r--library/dde/pkgIndex.tcl2
-rw-r--r--library/init.tcl2
-rw-r--r--library/registry/pkgIndex.tcl2
-rw-r--r--tests/registry.test4
-rw-r--r--tests/winDde.test2
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.ac2
-rw-r--r--unix/tcl.spec2
-rw-r--r--win/Makefile.in4
-rwxr-xr-xwin/configure2
-rw-r--r--win/configure.ac2
-rw-r--r--win/makefile.vc4
-rw-r--r--win/tclWinDde.c2
-rw-r--r--win/tclWinReg.c2
17 files changed, 21 insertions, 21 deletions
diff --git a/README.md b/README.md
index 051a04c..4f5d4d7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# README: Tcl
-This is the **Tcl 9.1a0** source distribution.
+This is the **Tcl 9.1a1** source distribution.
You can get any source release of Tcl from [our distribution
site](https://sourceforge.net/projects/tcl/files/Tcl/).
diff --git a/changes.md b/changes.md
index 2a30b68..5c93499 100644
--- a/changes.md
+++ b/changes.md
@@ -4,7 +4,7 @@ changes to the Tcl source code at
> [Tcl Source Code](https://core.tcl-lang.org/tcl/timeline)
-Release Tcl 9.1a0 arises from the check-in with tag `core-9-1-a0`.
+Release Tcl 9.1a1 arises from the check-in with tag `core-9-1-a1`.
Highlighted differences between Tcl 9.1 and Tcl 9.0 are summarized below,
with focus on changes important to programmers using the Tcl library and
diff --git a/generic/tcl.h b/generic/tcl.h
index 279f481..b755c04 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -54,10 +54,10 @@ extern "C" {
#endif
#define TCL_MINOR_VERSION 1
#define TCL_RELEASE_LEVEL TCL_ALPHA_RELEASE
-#define TCL_RELEASE_SERIAL 0
+#define TCL_RELEASE_SERIAL 1
#define TCL_VERSION "9.1"
-#define TCL_PATCH_LEVEL "9.1a0"
+#define TCL_PATCH_LEVEL "9.1a1"
#if defined(RC_INVOKED)
/*
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl
index 25125c8..aea9a1c 100644
--- a/library/dde/pkgIndex.tcl
+++ b/library/dde/pkgIndex.tcl
@@ -1,5 +1,5 @@
if {![package vsatisfies [package provide Tcl] 9.0-]} return
if {[info sharedlibextension] != ".dll"} return
-package ifneeded dde 1.5a0 \
+package ifneeded dde 1.5a1 \
[list load [file join $dir tcl9dde15.dll] Dde]
diff --git a/library/init.tcl b/library/init.tcl
index b55db1b..5231b85 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -15,7 +15,7 @@
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-package require -exact tcl 9.1a0
+package require -exact tcl 9.1a1
# Compute the auto path to use in this interpreter.
# The values on the path come from several locations:
diff --git a/library/registry/pkgIndex.tcl b/library/registry/pkgIndex.tcl
index ee302ef..f543d35 100644
--- a/library/registry/pkgIndex.tcl
+++ b/library/registry/pkgIndex.tcl
@@ -1,4 +1,4 @@
if {![package vsatisfies [package provide Tcl] 9.0-]} return
if {[info sharedlibextension] != ".dll"} return
-package ifneeded registry 1.4a0 \
+package ifneeded registry 1.4a1 \
[list load [file join $dir tcl9registry14.dll] Registry]
diff --git a/tests/registry.test b/tests/registry.test
index 829fe08..54c7122 100644
--- a/tests/registry.test
+++ b/tests/registry.test
@@ -19,7 +19,7 @@ testConstraint reg 0
if {[testConstraint win]} {
if {![catch {
::tcltest::loadTestedCommands
- set ::regver [package require registry 1.4a0]
+ set ::regver [package require registry 1.4a1]
}]} {
testConstraint reg 1
}
@@ -34,7 +34,7 @@ testConstraint english [expr {
test registry-1.0 {check if we are testing the right dll} {win reg} {
set ::regver
-} {1.4a0}
+} {1.4a1}
test registry-1.1 {argument parsing for registry command} {win reg} {
list [catch {registry} msg] $msg
} {1 {wrong # args: should be "registry ?-32bit|-64bit? option ?arg ...?"}}
diff --git a/tests/winDde.test b/tests/winDde.test
index 74e3222..ec821da 100644
--- a/tests/winDde.test
+++ b/tests/winDde.test
@@ -105,7 +105,7 @@ proc createChildProcess {ddeServerName args} {
# -------------------------------------------------------------------------
test winDde-1.0 {check if we are testing the right dll} {win dde} {
set ::ddever
-} {1.5a0}
+} {1.5a1}
test winDde-1.1 {Settings the server's topic name} -constraints dde -body {
list [dde servername foobar] [dde servername] [dde servername self]
diff --git a/unix/configure b/unix/configure
index 909fad0..1c8be19 100755
--- a/unix/configure
+++ b/unix/configure
@@ -2710,7 +2710,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
TCL_VERSION=9.1
TCL_MAJOR_VERSION=9
TCL_MINOR_VERSION=1
-TCL_PATCH_LEVEL="a0"
+TCL_PATCH_LEVEL="a1"
VERSION=${TCL_VERSION}
EXTRA_INSTALL_BINARIES=${EXTRA_INSTALL_BINARIES:-"@:"}
diff --git a/unix/configure.ac b/unix/configure.ac
index 8e660ac..6a531b8 100644
--- a/unix/configure.ac
+++ b/unix/configure.ac
@@ -26,7 +26,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [
TCL_VERSION=9.1
TCL_MAJOR_VERSION=9
TCL_MINOR_VERSION=1
-TCL_PATCH_LEVEL="a0"
+TCL_PATCH_LEVEL="a1"
VERSION=${TCL_VERSION}
EXTRA_INSTALL_BINARIES=${EXTRA_INSTALL_BINARIES:-"@:"}
diff --git a/unix/tcl.spec b/unix/tcl.spec
index f6aacf5..204d1be 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -4,7 +4,7 @@
Name: tcl
Summary: Tcl scripting language development environment
-Version: 9.1a0
+Version: 9.1a1
Release: 2
License: BSD
Group: Development/Languages
diff --git a/win/Makefile.in b/win/Makefile.in
index 3f28d25..38105a3 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -158,8 +158,8 @@ TEST_DLL_FILE = tcltest$(VER)${DLLSUFFIX}
TEST_EXE_FILE = tcltest${EXESUFFIX}
TEST_LIB_FILE = @LIBPREFIX@tcltest$(VER)${DLLSUFFIX}${LIBSUFFIX}
TEST_LOAD_PRMS = lappend ::auto_path {$(ROOT_DIR_WIN_NATIVE)/tests};\
- package ifneeded dde 1.5a0 [list load ${DDE_DLL_FILE}];\
- package ifneeded registry 1.4a0 [list load ${REG_DLL_FILE}]
+ package ifneeded dde 1.5a1 [list load ${DDE_DLL_FILE}];\
+ package ifneeded registry 1.4a1 [list load ${REG_DLL_FILE}]
TEST_LOAD_FACILITIES = package ifneeded tcl::test ${VERSION}@TCL_PATCH_LEVEL@ [list load ${TEST_DLL_FILE} Tcltest];\
$(TEST_LOAD_PRMS)
ZLIB_DLL_FILE = zlib1.dll
diff --git a/win/configure b/win/configure
index 1c270750..7781259 100755
--- a/win/configure
+++ b/win/configure
@@ -2411,7 +2411,7 @@ SHELL=/bin/sh
TCL_VERSION=9.1
TCL_MAJOR_VERSION=9
TCL_MINOR_VERSION=1
-TCL_PATCH_LEVEL="a0"
+TCL_PATCH_LEVEL="a1"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.5
diff --git a/win/configure.ac b/win/configure.ac