Skip to content

Commit ac01540

Browse files
author
dgp
committed
Any edit to a released package needs to bump the version number.
1 parent 8581d97 commit ac01540

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

library/http/http.tcl

Lines changed: 1 addition & 1 deletion
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.10.0
14+
package provide http 2.10.1
1515

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

library/http/pkgIndex.tcl

Lines changed: 1 addition & 1 deletion
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.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}}}]
2+
package ifneeded http 2.10.1 [list tclPkgSetup $dir http 2.10.1 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]

unix/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,9 +1071,9 @@ install-libraries: libraries
10711071
do \
10721072
$(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)/cookiejar0.2"; \
10731073
done
1074-
@echo "Installing package http 2.10.0 as a Tcl Module"
1074+
@echo "Installing package http 2.10.1 as a Tcl Module"
10751075
@$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl \
1076-
"$(MODULE_INSTALL_DIR)/9.0/http-2.10.0.tm"
1076+
"$(MODULE_INSTALL_DIR)/9.0/http-2.10.1.tm"
10771077
@echo "Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/"
10781078
@for i in $(TOP_DIR)/library/opt/*.tcl; do \
10791079
$(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)/opt0.4"; \

win/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -936,8 +936,8 @@ install-libraries: libraries install-tzdata install-msgs
936936
$(ROOT_DIR)/library/cookiejar/*.gz; do \
937937
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/cookiejar0.2"; \
938938
done;
939-
@echo "Installing package http 2.10.0 as a Tcl Module";
940-
@$(COPY) $(ROOT_DIR)/library/http/http.tcl "$(MODULE_INSTALL_DIR)/9.0/http-2.10.0.tm";
939+
@echo "Installing package http 2.10.1 as a Tcl Module";
940+
@$(COPY) $(ROOT_DIR)/library/http/http.tcl "$(MODULE_INSTALL_DIR)/9.0/http-2.10.1.tm";
941941
@echo "Installing package opt 0.4.7";
942942
@for j in $(ROOT_DIR)/library/opt/*.tcl; do \
943943
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/opt0.4"; \

0 commit comments

Comments
 (0)