|
Revision 162, 0.5 kB
(checked in by bradfitz, 2 years ago)
|
|
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@…>.
|
| Line | |
|---|
| 1 | package Brackup; |
|---|
| 2 | use strict; |
|---|
| 3 | use vars qw($VERSION); |
|---|
| 4 | $VERSION = '1.05'; |
|---|
| 5 | |
|---|
| 6 | use Brackup::Config; |
|---|
| 7 | use Brackup::ConfigSection; |
|---|
| 8 | use Brackup::File; |
|---|
| 9 | use Brackup::Metafile; |
|---|
| 10 | use Brackup::PositionedChunk; |
|---|
| 11 | use Brackup::StoredChunk; |
|---|
| 12 | use Brackup::Backup; |
|---|
| 13 | use Brackup::Root; # aka "source" |
|---|
| 14 | use Brackup::Restore; |
|---|
| 15 | use Brackup::Target; |
|---|
| 16 | use Brackup::BackupStats; |
|---|
| 17 | |
|---|
| 18 | 1; |
|---|
| 19 | |
|---|
| 20 | __END__ |
|---|
| 21 | |
|---|
| 22 | =head1 NAME |
|---|
| 23 | |
|---|
| 24 | Brackup - Flexible backup tool. Slices, dices, encrypts, and sprays across the net. |
|---|
| 25 | |
|---|
| 26 | =head1 FURTHER READING |
|---|
| 27 | |
|---|
| 28 | L<Brackup::Manual::Overview> |
|---|
| 29 | |
|---|
| 30 | L<brackup> |
|---|
| 31 | |
|---|
| 32 | L<brackup-restore> |
|---|
| 33 | |
|---|