Skip to content

Commit eb26f62

Browse files
author
jan.nijtmans
committed
Update changes.md version to 9.0.0. http -> 2.10.0
1 parent d468e23 commit eb26f62

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

changes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ changes to the Tcl source code at
44

55
> [Tcl Source Code](https://core.tcl-lang.org/tcl/timeline)
66
7-
Release Tcl 9.0b4 arises from the check-in with tag core-9-0-b4.
7+
Release Tcl 9.0.0 arises from the check-in with tag core-9-0-0.
88

99
Highlighted differences between Tcl 9.0 and Tcl 8.6 are summarized below,
1010
with focus on changes important to programmers using the Tcl library and

library/http/http.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
package require Tcl 8.6-
1212
# Keep this in sync with pkgIndex.tcl and with the install directories in
1313
# Makefiles
14-
package provide http 2.10b4
14+
package provide http 2.10.0
1515

1616
namespace eval http {
1717
# Allow resourcing to not clobber existing data

library/http/pkgIndex.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
2-
package ifneeded http 2.10b4 [list tclPkgSetup $dir http 2.10b4 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]
2+
package ifneeded http 2.10.0 [list tclPkgSetup $dir http 2.10.0 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]

library/manifest.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
apply {{dir} {
55
set isafe [interp issafe]
66
foreach {safe package version file} {
7-
0 http 2.10b4 {http http.tcl}
7+
0 http 2.10.0 {http http.tcl}
88
1 msgcat 1.7.1 {msgcat msgcat.tcl}
99
1 opt 0.4.9 {opt optparse.tcl}
1010
0 cookiejar 0.2.0 {cookiejar cookiejar.tcl}

unix/Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1078,9 +1078,9 @@ install-libraries: libraries
10781078
do \
10791079
$(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)/cookiejar0.2"; \
10801080
done
1081-
@echo "Installing package http 2.10b4 as a Tcl Module"
1081+
@echo "Installing package http 2.10.0 as a Tcl Module"
10821082
@$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl \
1083-
"$(MODULE_INSTALL_DIR)/9.0/http-2.10b4.tm"
1083+
"$(MODULE_INSTALL_DIR)/9.0/http-2.10.0.tm"
10841084
@echo "Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/"
10851085
@for i in $(TOP_DIR)/library/opt/*.tcl; do \
10861086
$(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)/opt0.4"; \

win/Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -939,8 +939,8 @@ install-libraries: libraries install-tzdata install-msgs
939939
$(ROOT_DIR)/library/cookiejar/*.gz; do \
940940
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/cookiejar0.2"; \
941941
done;
942-
@echo "Installing package http 2.10b4 as a Tcl Module";
943-
@$(COPY) $(ROOT_DIR)/library/http/http.tcl "$(MODULE_INSTALL_DIR)/9.0/http-2.10b4.tm";
942+
@echo "Installing package http 2.10.0 as a Tcl Module";
943+
@$(COPY) $(ROOT_DIR)/library/http/http.tcl "$(MODULE_INSTALL_DIR)/9.0/http-2.10.0.tm";
944944
@echo "Installing package opt 0.4.7";
945945
@for j in $(ROOT_DIR)/library/opt/*.tcl; do \
946946
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/opt0.4"; \

0 commit comments

Comments
 (0)