Changeset 162 for trunk

Show
Ignore:
Timestamp:
08/02/07 21:05:43 (2 years ago)
Author:
bradfitz
Message:

Checking in changes prior to tagging of version 1.05. Changelog diff is:

Index: Changes
===================================================================
--- Changes (revision 161)
+++ Changes (working copy)
@@ -1,3 +1,5 @@
+1.05 (august 2, 2007)
+

  • 'prune' and 'gc' commands commands for both Amazon

and Filesystem targets. from Alessandro Ranellucci <aar@…>.


Location:
trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/Changes

    r161 r162  
     11.05 (august 2, 2007) 
     2 
    13  - 'prune' and 'gc' commands commands for both Amazon 
    24     and Filesystem targets.  from Alessandro Ranellucci <aar@cpan.org>. 
  • trunk/MANIFEST

    r154 r162  
    2424lib/Brackup/InventoryDatabase.pm 
    2525lib/Brackup/Manual/Overview.pod 
     26lib/Brackup/Metafile.pm 
    2627lib/Brackup/PositionedChunk.pm 
    2728lib/Brackup/Restore.pm 
     
    4243t/02-gpg.t 
    4344t/03-combine-little-files.t 
     45t/04-gc.t 
    4446t/data/000-dup1.txt 
    4547t/data/000-dup2.txt 
  • trunk/lib/Brackup.pm

    r161 r162  
    22use strict; 
    33use vars qw($VERSION); 
    4 $VERSION = '1.04'; 
     4$VERSION = '1.05'; 
    55 
    66use Brackup::Config; 
  • trunk/t/04-gc.t

    r161 r162  
    2828for (1..$orphan_chunks_count) { 
    2929    my $chunk = Brackup::StoredChunk->new; 
    30     $chunk->{_chunkref} = \"foobar $_"; 
     30    $chunk->{_chunkref} = \ "foobar $_"; 
    3131    $target->store_chunk($chunk); 
    3232}