summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--README12
-rw-r--r--debian/changelog8
-rw-r--r--obnamlib/__init__.py2
-rw-r--r--setup.py2
5 files changed, 19 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index 7e953bb7..f37543f4 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,13 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
+Version 1.0, released 2012-06-01
+--------------------------------
+
+* Fixed bug in finding duplicate files during a backup generation.
+ Thanks to Saint Germain for reporting the problem.
+* Changed version number to 1.0.
+
Version 0.30, released 2012-05-30; a RELEASE CANDIDATE
------------------------------------------------------
diff --git a/README b/README
index db5adcd1..69a9dc57 100644
--- a/README
+++ b/README
@@ -1,15 +1,7 @@
Obnam, a backup program
=======================
-Obnam is a backup program. It is currently in BETA quality, meaning that
-all the necessary features should be there, but there are bugs that may
-annoy you a lot, and performance may be entirely inadequate for you.
-Hopefully using Obnam will no longer turn you bitter and hateful, and
-make you abandon all hope for civilisation, move into the rain forest,
-and talk to birds for the rest of your life.
-
-It would be inadvisable to rely on Obnam as your only backup solution,
-but it should be ready for feature evaluation use.
+Obnam is a backup program.
Home page
@@ -22,7 +14,7 @@ for more information.
Installation
------------
-The source tree contains packaging for Debian. Run `debuild -us -uc` to
+The source tree contains packaging for Debian. Run `debuild -us -uc -i.bzr` to
build an installation package.
On other systems, using the `setup.py` file should work: run
diff --git a/debian/changelog b/debian/changelog
index 04332038..a295501a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+obnam (1.0-1) unstable; urgency=low
+
+ * New upstream release.
+ - Fixed bug in finding duplicate files during a backup generation.
+ Thanks to Saint Germain for reporting the problem.
+
+ -- Lars Wirzenius <liw@liw.fi> Fri, 01 Jun 2012 10:28:36 +0200
+
obnam (0.30-1) unstable; urgency=low
* New upstream release.
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index 082295a2..7397c19c 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -17,7 +17,7 @@
import cliapp
-__version__ = '0.30'
+__version__ = '1.0'
diff --git a/setup.py b/setup.py
index c37e0aef..bd6a03f3 100644
--- a/setup.py
+++ b/setup.py
@@ -135,7 +135,7 @@ class Check(Command):
setup(name='obnam',
- version='0.30',
+ version='1.0',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',