Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r161 r162 1 1.05 (august 2, 2007) 2 1 3 - 'prune' and 'gc' commands commands for both Amazon 2 4 and Filesystem targets. from Alessandro Ranellucci <aar@cpan.org>. -
trunk/MANIFEST
r154 r162 24 24 lib/Brackup/InventoryDatabase.pm 25 25 lib/Brackup/Manual/Overview.pod 26 lib/Brackup/Metafile.pm 26 27 lib/Brackup/PositionedChunk.pm 27 28 lib/Brackup/Restore.pm … … 42 43 t/02-gpg.t 43 44 t/03-combine-little-files.t 45 t/04-gc.t 44 46 t/data/000-dup1.txt 45 47 t/data/000-dup2.txt -
trunk/lib/Brackup.pm
r161 r162 2 2 use strict; 3 3 use vars qw($VERSION); 4 $VERSION = '1.0 4';4 $VERSION = '1.05'; 5 5 6 6 use Brackup::Config; -
trunk/t/04-gc.t
r161 r162 28 28 for (1..$orphan_chunks_count) { 29 29 my $chunk = Brackup::StoredChunk->new; 30 $chunk->{_chunkref} = \ "foobar $_";30 $chunk->{_chunkref} = \ "foobar $_"; 31 31 $target->store_chunk($chunk); 32 32 }
