Skip to content

Commit

Permalink
added another query example
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 30, 2012
1 parent 67dc265 commit 24f94e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

2.99 2012-05-31
- Improved documentation.

2.98 2012-05-30
- Switched from IO::Socket::IP to IO::Socket::INET6 for IPv6 support.
- Improved IPv6 exception handling in Mojo::IOLoop::Client.
Expand Down
3 changes: 3 additions & 0 deletions lib/Mojo/URL.pm
Expand Up @@ -408,6 +408,9 @@ Query part of this URL, defaults to a L<Mojo::Parameters> object.
# "http://mojolicio.us?a=2&c=3"
Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query(a => 2, c => 3);
# "http://mojolicio.us?a=2&a=3"
Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query(a => [2, 3]);
# "http://mojolicio.us?a=2&b=2&c=3"
Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query([a => 2, c => 3]);
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -34,7 +34,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Leaf Fluttering In Wind';
our $VERSION = '2.98';
our $VERSION = '2.99';

# "These old doomsday devices are dangerously unstable.
# I'll rest easier not knowing where they are."
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious/Command/version.pm
Expand Up @@ -32,9 +32,9 @@ CORE
Mojolicious ($Mojolicious::VERSION, $Mojolicious::CODENAME)
OPTIONAL
EV ($ev)
IO::Socket::INET6 ($ipv6)
IO::Socket::SSL ($tls)
EV ($ev)
IO::Socket::INET6 ($ipv6)
IO::Socket::SSL ($tls)
EOF

Expand Down

0 comments on commit 24f94e3

Please sign in to comment.