diff options
author | Jonas Borgström <jonas@borgstrom.se> | 2013-08-05 20:54:27 +0200 |
---|---|---|
committer | Jonas Borgström <jonas@borgstrom.se> | 2013-08-05 20:54:27 +0200 |
commit | 05a14c3be3399199da87285fe0f0ddc15a17b1fa (patch) | |
tree | 9dbd32b79f843ff6f3a25047b3fbbb77ab3b22ab | |
parent | 7815ed5885ce232e68452b04a3c252836b3cada9 (diff) |
Attic 0.70.7
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | attic/__init__.py | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,15 +1,16 @@ Attic Changelog =============== -Here you can see the full list of changes between each darc release. +Here you can see the full list of changes between each Attic release. Version 0.7 ----------- -(feature release, released on X) +(feature release, released on Aug 5, 2013) - Ported to FreeBSD +- Improved documentation - Experimental: Archives mountable as fuse filesystems. - The "user." prefix is no longer stripped from xattrs on Linux diff --git a/README.rst b/README.rst index 13f906f50..31bdfd6f9 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,10 @@ Off-site backups attic can store data on any remote host accessible over SSH as long as attic is installed. +Backups mountable as filesystems + Backup archives are mountable as userspace filesystems for easy backup + verification and restores. + What do I need? --------------- Attic requires Python 3.2 or above to work. Besides Python attic also requires diff --git a/attic/__init__.py b/attic/__init__.py index 69b15cf03..1011e03fc 100644 --- a/attic/__init__.py +++ b/attic/__init__.py @@ -1,4 +1,4 @@ # This is a python package __version__ = '0.7' -__release__ = __version__ + '.dev' +__release__ = __version__ # + '.dev' |