diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-28 13:45:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-28 13:45:50 (GMT) |
commit | 8e51252be88273f88ea1877fc1980352cf278988 (patch) | |
tree | 798c4253ebd6c3eab3d5534a265747311e776a76 /library | |
parent | f67e946a671273c2ac6ced8bf06e577edf4c333d (diff) | |
parent | a5162e47d57e9549fb2ee179f87823dcc11a7be7 (diff) | |
download | tcl-8e51252be88273f88ea1877fc1980352cf278988.zip tcl-8e51252be88273f88ea1877fc1980352cf278988.tar.gz tcl-8e51252be88273f88ea1877fc1980352cf278988.tar.bz2 |
Merge 8.7
Diffstat (limited to 'library')
-rw-r--r-- | library/cookiejar/cookiejar.tcl | 2 | ||||
-rw-r--r-- | library/cookiejar/idna.tcl | 2 | ||||
-rw-r--r-- | library/cookiejar/pkgIndex.tcl | 4 | ||||
-rw-r--r-- | library/manifest.txt | 4 | ||||
-rw-r--r-- | library/safe.tcl | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/library/cookiejar/cookiejar.tcl b/library/cookiejar/cookiejar.tcl index 4aea842..22f0f30 100644 --- a/library/cookiejar/cookiejar.tcl +++ b/library/cookiejar/cookiejar.tcl @@ -54,7 +54,7 @@ namespace eval [info object namespace ::http::cookiejar] { # Keep this in sync with pkgIndex.tcl and with the install directories in # Makefiles - variable version 0.1 + variable version 0.2.0 variable domainlist \ http://publicsuffix.org/list/effective_tld_names.dat diff --git a/library/cookiejar/idna.tcl b/library/cookiejar/idna.tcl index 2a7d289..1ab9fc4 100644 --- a/library/cookiejar/idna.tcl +++ b/library/cookiejar/idna.tcl @@ -284,7 +284,7 @@ namespace eval ::tcl::idna { } } -package provide tcl::idna 1.0 +package provide tcl::idna 1.0.1 # Local variables: # mode: tcl diff --git a/library/cookiejar/pkgIndex.tcl b/library/cookiejar/pkgIndex.tcl index a8d8742..b1853aa 100644 --- a/library/cookiejar/pkgIndex.tcl +++ b/library/cookiejar/pkgIndex.tcl @@ -1,3 +1,3 @@ if {![package vsatisfies [package provide Tcl] 8.6-]} {return} -package ifneeded cookiejar 0.1 [list source [file join $dir cookiejar.tcl]] -package ifneeded tcl::idna 1.0 [list source [file join $dir idna.tcl]] +package ifneeded cookiejar 0.2.0 [list source [file join $dir cookiejar.tcl]] +package ifneeded tcl::idna 1.0.1 [list source [file join $dir idna.tcl]] diff --git a/library/manifest.txt b/library/manifest.txt index 6bbbb51..620f8b8 100644 --- a/library/manifest.txt +++ b/library/manifest.txt @@ -8,8 +8,8 @@ apply {{dir} { 0 http 2.9.1 {http http.tcl} 1 msgcat 1.7.0 {msgcat msgcat.tcl} 1 opt 0.4.7 {opt optparse.tcl} - 0 cookiejar 0.1 {cookiejar cookiejar.tcl} - 0 tcl::idna 1.0 {cookiejar idna.tcl} + 0 cookiejar 0.2.0 {cookiejar cookiejar.tcl} + 0 tcl::idna 1.0.1 {cookiejar idna.tcl} 0 platform 1.0.14 {platform platform.tcl} 0 platform::shell 1.1.4 {platform shell.tcl} 1 tcltest 2.5.1 {tcltest tcltest.tcl} diff --git a/library/safe.tcl b/library/safe.tcl index ef370b5..0f90372 100644 --- a/library/safe.tcl +++ b/library/safe.tcl @@ -20,7 +20,7 @@ # # Needed utilities package -package require opt 0.4.1 +package require opt 0.4.7 # Create the safe namespace namespace eval ::safe { |