summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--changes25
-rw-r--r--generic/tcl.h4
-rw-r--r--library/init.tcl2
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.in2
-rw-r--r--unix/tcl.spec2
-rwxr-xr-xwin/configure2
-rw-r--r--win/configure.in2
9 files changed, 27 insertions, 16 deletions
diff --git a/README.md b/README.md
index 1c5cd4b..a96ebf3 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# README: Tcl
-This is the **Tcl 8.6.13** source distribution.
+This is the **Tcl 8.6.14** 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 b/changes
index 7f60826..647d7cf 100644
--- a/changes
+++ b/changes
@@ -9205,9 +9205,13 @@ Many code fixes to avoid overflow or undefined behavior. Thanks chrstphrchvz.
2023-03-05 (bug) [9c5a00]. Fix ~ and ~user path prefix on Windows (nadkarni)
+2023-03-13 (bug)[183a1a] Prevent BO by Tcl_UtfToExternal (nadkarni)
+
2023-03-14 (bug) [ea69b0], crash when using a channel transformation on TCP
client socket (coulter)
+2023-03-22 (bug)[026575] Prevent invalid read in Tcl_UtfToUniChar (nijtmans)
+
2023-03-30 (rfe) Allow empty mode in [chan create] to allow refchan version of
[socket -server] (max)
@@ -9227,8 +9231,6 @@ Many code fixes to avoid overflow or undefined behavior. Thanks chrstphrchvz.
2023-07-26 (rfe) [c54e4a] fork multithreading performance by using vfork/spawn
when supported (neumann)
-2023-08-17 TIP #662: Tcl_VarEval is not depreciated any more (nijtmans)
-
2023-08-29 Update zlib to version 1.3 (nijtmans)
2023-09-04 Update libtommath to version 1.2.1 (nijtmans)
@@ -9253,20 +9255,24 @@ Many code fixes to avoid overflow or undefined behavior. Thanks chrstphrchvz.
2023-09-14 (bug) [00655c] ClockGetdatefieldsObjCmd(): avoid signed integer
overflow and platform-dependent behavior (nijtmans)
+2023-09-28 TIP #662: Tcl_VarEval is not depreciated any more (nijtmans)
+
2023-10-01 (bug) [7b3167] tclOO.c: initialize fakeObject.refCount (nijtmans)
2023-10-04 (bug) [7371b6] AddressSanitizer use-after-return detection breaks NRE
tests, coroutines (nijtmans)
+2023-11-20 (bug)[32b889] prevent spurious errors from [clock format] (gahr)
+
2023-11-30 (bug) [fb2fa9],[21b062] reallow [exec %var%] on MS-Windows. It was
forbidden in 8.6.13 (brester)
2023-12-30 (rfe) [0ac9d0] Don't call getsockname(2) in Tcl_MakeFileChannel(3)
- unless absolutely necessary. Permits better constraining of Tcl/tclsh via
- OpenBSD's pledge(2) or similar mechanisms. Minor rewrite.
+ unless absolutely necessary. Permits better constraining of Tcl/tclsh
+ via OpenBSD's pledge(2) or similar mechanisms. Minor rewrite.
-2024-01-24 [db4f28] segfault when Tcl_ReadChars is called with unicode object
- (brester)
+2024-01-09 (feature) Adapt tcltest to support Tcl 9.
+=> tcltest 2.5.7
2024-01-11 (bug) [fd27ad] doc change of Tcl_PkgRequire & friends: version string
specification refers to "package require".
@@ -9276,10 +9282,15 @@ Many code fixes to avoid overflow or undefined behavior. Thanks chrstphrchvz.
2024-01-29 Update to zlib 1.3.1 (nijtmans)
+2024-01-29 [db4f28] segfault when Tcl_ReadChars is called with unicode object
+ (brester)
+
+2024-02-04 tzdata updated to Olson's tzdata2024a (nijtmans)
+
2024-02-05 fix/document Tcl_ObjPrintf with "ll" modifier (nijtmans)
2024-02-06 [8e666d] endless loop when redefining proc ::history (nash)
2024-02-06 [86b3c1] endless loop when ::unknown is moved into a namespace (nash)
-- Released 8.6.14, Feb ??, 2024 - details at https://core.tcl-lang.org/tcl/ -
+- Released 8.6.14, Feb 28, 2024 - details at https://core.tcl-lang.org/tcl/ -
diff --git a/generic/tcl.h b/generic/tcl.h
index f4c89ba..28d094f 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -56,10 +56,10 @@ extern "C" {
#endif
#define TCL_MINOR_VERSION 6
#define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE
-#define TCL_RELEASE_SERIAL 13
+#define TCL_RELEASE_SERIAL 14
#define TCL_VERSION "8.6"
-#define TCL_PATCH_LEVEL "8.6.13"
+#define TCL_PATCH_LEVEL "8.6.14"
/*
*----------------------------------------------------------------------------
diff --git a/library/init.tcl b/library/init.tcl
index 3200955..1a51294 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -16,7 +16,7 @@
if {[info commands package] == ""} {
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
-package require -exact Tcl 8.6.13
+package require -exact Tcl 8.6.14
# Compute the auto path to use in this interpreter.
# The values on the path come from several locations:
diff --git a/unix/configure b/unix/configure
index fcbd279..87dc84d 100755
--- a/unix/configure
+++ b/unix/configure
@@ -1335,7 +1335,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL=".13"
+TCL_PATCH_LEVEL=".14"
VERSION=${TCL_VERSION}
EXTRA_INSTALL_BINARIES=${EXTRA_INSTALL_BINARIES:-"@:"}
diff --git a/unix/configure.in b/unix/configure.in
index 39eba16..4f62510 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -26,7 +26,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL=".13"
+TCL_PATCH_LEVEL=".14"
VERSION=${TCL_VERSION}
EXTRA_INSTALL_BINARIES=${EXTRA_INSTALL_BINARIES:-"@:"}
diff --git a/unix/tcl.spec b/unix/tcl.spec
index f4177a4..de61d38 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -4,7 +4,7 @@
Name: tcl
Summary: Tcl scripting language development environment
-Version: 8.6.13
+Version: 8.6.14
Release: 2
License: BSD
Group: Development/Languages
diff --git a/win/configure b/win/configure
index d755c39..1382854 100755
--- a/win/configure
+++ b/win/configure
@@ -1325,7 +1325,7 @@ SHELL=/bin/sh
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL=".13"
+TCL_PATCH_LEVEL=".14"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.4
diff --git a/win/configure.in b/win/configure.in
index 7096be0..737f046 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -15,7 +15,7 @@ SHELL=/bin/sh
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL=".13"
+TCL_PATCH_LEVEL=".14"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.4