Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Release 0.3701
Browse files Browse the repository at this point in the history
  • Loading branch information
pioto committed Dec 17, 2010
1 parent b85779f commit 1427542
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changes for Unix::Uptime

0.3701 Thu Dec 16 22:40:14 EST 2010
- Fix build of XS on NetBSD.
- Correctly allocate all the space we need in SP

0.37 Tue Dec 14 23:25:05 EST 2010
- Unify support for all BSD derivatives, using XS, and falling back
on using the '-b' flag to sysctl, which is a bit more portable
Expand Down
2 changes: 1 addition & 1 deletion lib/Unix/Uptime.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Unix::Uptime;
use warnings;
use strict;

our $VERSION='0.37';
our $VERSION='0.3701';
$VERSION = eval $VERSION;

my %modules = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Unix/Uptime/BSD.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;

my $HAVE_XS = eval { require Unix::Uptime::BSD::XS; };

our $VERSION='0.37';
our $VERSION='0.3701';
$VERSION = eval $VERSION;

sub uptime {
Expand Down
2 changes: 1 addition & 1 deletion lib/Unix/Uptime/BSD/XS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use base 'Exporter';

our @EXPORT = qw(sysctl_kern_boottime sysctl_vm_loadavg);

our $VERSION='0.37';
our $VERSION='0.3701';
$VERSION = eval $VERSION;

require XSLoader;
Expand Down
2 changes: 1 addition & 1 deletion lib/Unix/Uptime/Linux.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Unix::Uptime::Linux;
use warnings;
use strict;

our $VERSION='0.37';
our $VERSION='0.3701';
$VERSION = eval $VERSION;

sub uptime {
Expand Down

0 comments on commit 1427542

Please sign in to comment.