summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2002-05-09 06:49:13 +0000
committerGisle Aas <gisle@aas.no>2002-05-09 06:49:13 +0000
commit909a94838494562a9e1122c5996058db423e1682 (patch)
treef8f456d91fa4bf353d987692887a94c307727a2a
parent4ace0456bed3c621376388a58eaaf203c7b424e1 (diff)
downloaduri-909a94838494562a9e1122c5996058db423e1682.tar.gz
Release 1.19R1.19
-rw-r--r--Changes21
-rw-r--r--README2
-rw-r--r--URI.pm4
3 files changed, 24 insertions, 3 deletions
diff --git a/Changes b/Changes
index 414f6ab..58fdf41 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,24 @@
+2002-05-09 Gisle Aas <gisle@ActiveState.com>
+
+ Release 1.19
+
+ URI::Heuristic will guess better on strings
+ like "123.3.3.3:8080/foo". It used to think that
+ the numbers before ":" was a scheme.
+
+ URI::WithBase will not keep the full history of
+ any base URI's base URI etc. This used to make
+ these objects grow into to monsters for some
+ web spiders.
+
+ URI::URL->new("foo", "bar")->base used to return
+ a "URI" object. Now an URI::URL object is returned
+ instead.
+
+ Deal properly with file:///-URIs.
+
+
+
2001-12-30 Gisle Aas <gisle@ActiveState.com>
Release 1.18
diff --git a/README b/README
index 6ceceaa..3925c7a 100644
--- a/README
+++ b/README
@@ -27,7 +27,7 @@ Questions about how to use this library should be directed to the
comp.lang.perl.modules USENET Newsgroup. Bug reports and suggestions
for improvements can be sent to the <libwww@perl.org> mailing list.
-Copyright 1998-2001 Gisle Aas.
+Copyright 1998-2002 Gisle Aas.
Copyright 1998 Graham Barr.
This library is free software; you can redistribute it and/or
diff --git a/URI.pm b/URI.pm
index a887f3a..9a4831c 100644
--- a/URI.pm
+++ b/URI.pm
@@ -1,8 +1,8 @@
-package URI; # $Date: 2002/02/19 17:50:25 $
+package URI; # $Date: 2002/05/09 06:49:13 $
use strict;
use vars qw($VERSION);
-$VERSION = "1.18";
+$VERSION = "1.19";
use vars qw($ABS_REMOTE_LEADING_DOTS $ABS_ALLOW_RELATIVE_SCHEME);