Skip to content

Commit

Permalink
Adding warning about the instability-- hrm, no, the sketchy nature of…
Browse files Browse the repository at this point in the history
… dev builds
  • Loading branch information
sanko committed Jun 28, 2010
1 parent c7563da commit 5801a81
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Changes
@@ -1,21 +1,23 @@
Version 0.XXXXX | In the not too distant future | 3b1b744
Version 0.XXXXX | In the not too distant future | e450fc8

API Changes/Compatibility Information:
* NA
* Rewrite!

Resolved Issues/Bug Fixes:
* NA
* Rewrite!

Protocol/Behavioral Changes:
* NA
* Rewrite!

Documentation/Sample Code/Test Suite:
* NA
* You know.

Notes:
* Meanwhile...
- NA
- This distribution is going through a rewrite. You know, ...fyi.
- This particular dist is being uploaded to test the DHT code so far.

---
Version 0.0052 | 2010-06-18 00:24:58Z (Fri, 18 Jun 2010) | d08d622

Documentation/Sample Code/Test Suite:
Expand All @@ -30,6 +32,7 @@ Version 0.0052 | 2010-06-18 00:24:58Z (Fri, 18 Jun 2010) | d08d622
* This will probably be the last 'stable' version before Net::BitTorrent
is rewritten. Stuff in TODO.pod will be expanded and used as a roadmap

---
Version 0.051 | 2009-09-12 04:52:06Z (Sat, 12 Sep 2009) | 694da26

API Changes/Compatibility Information:
Expand Down
48 changes: 48 additions & 0 deletions lib/Net/BitTorrent.pm
Expand Up @@ -349,6 +349,54 @@ package Net::BitTorrent;
=pod
=head1 NAME
Net::BitTorrent - Wheeeeeeee!!!
=head1 Synopsis
use Net::BitTorrent;
use AnyEvent;
my $c = Net::BitTorrent->new();
# XXX - callback system is incomplete
my $t = $c->add_torrent( path => 'a/legal.torrent' )
|| die 'Cannot load .torrent';
$c->run; # Simple wrapper around AnyEvent->condvar->recv
=head1 Description
L<Net::BitTorrent|Net::BitTorrent> is a class based implementation of the
BitTorrent Protocol for distributed data exchange.
=for html <span style="color:#F00;font-weight:700">
=for text
******************************************************************************
Note that this distribution is being rewritten from scratch and will
eventually use L<Moose|Moose> and L<AnyEvent|AnyEvent>. If you see this
notice, I am probably trying out some new thing I'd like to have some CPAN
tester data on.
You are invited to test but please B<DO NOT ATTEMPT TO USE THIS IN PRODUCTION>
as everything from the API to basic internal functionality is subject to
change. For more, see the module's repository on
L<github.com/sanko/net-bittorrent|http://github.com/sanko/net-bittorrent>.
All bugs and feature requests should be made on the issue tracker found at
L<github.com/sanko/net-bittorrent/issues|http://github.com/sanko/net-bittorrent/isues>
or via IRC at
L<irc://freenode.net/#net-bittorrent|irc://freenode.net/#net-bittorrent>.
=for text
******************************************************************************
=for html </span>
=head1 Author
Sanko Robinson <sanko@cpan.org> - http://sankorobinson.com/
Expand Down

0 comments on commit 5801a81

Please sign in to comment.