summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog10
-rw-r--r--src/include/ceph_fs.h2
3 files changed, 12 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 26a7af398c0..ac01bf907ff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,7 +12,7 @@ AC_CANONICAL_HOST
AC_CANONICAL_TARGET
# Automake
-AM_INIT_AUTOMAKE(ceph, 0.20)
+AM_INIT_AUTOMAKE(ceph, 0.20.1)
AM_PROG_CC_C_O
AM_PROG_LIBTOOL
diff --git a/debian/changelog b/debian/changelog
index b9bf83021f6..2564f712be0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+ceph (0.20.1-1) unstable; urgency=low
+
+ * osd: fix journal initialization bugs
+ * librados: fix aio callbacks
+ * osd: misc bug fixes
+ * mds: misc hangs
+ * msgr: some fixes
+
+ -- Sage Weil <sage@newdream.net> Fri, 14 May 2010 13:09:44 -0700
+
ceph (0.20-1) unstable; urgency=low
* osd: new journaling infrastructure
diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h
index b872fb0ca5b..52bda6a4156 100644
--- a/src/include/ceph_fs.h
+++ b/src/include/ceph_fs.h
@@ -20,7 +20,7 @@
*/
#define CEPH_VERSION_MAJOR 0
#define CEPH_VERSION_MINOR 20
-#define CEPH_VERSION_PATCH 0
+#define CEPH_VERSION_PATCH 1
#define _CEPH_STRINGIFY(x) #x
#define CEPH_STRINGIFY(x) _CEPH_STRINGIFY(x)