summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog14
-rw-r--r--src/include/ceph_fs.h4
3 files changed, 17 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 9e6028b33c4..925dbca2cac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,7 +12,7 @@ AC_CANONICAL_HOST
AC_CANONICAL_TARGET
# Automake
-AM_INIT_AUTOMAKE(ceph, 0.16.1)
+AM_INIT_AUTOMAKE(ceph, 0.17)
AM_PROG_CC_C_O
AM_PROG_LIBTOOL
diff --git a/debian/changelog b/debian/changelog
index 6f4443fe0bf..1d308df9208 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+ceph (0.17) unstable; urgency=low
+
+ * kclient: fix multiple mds mdsmap decoding
+ * kclient: fix mon subscription renewal
+ * crush: fix map creation with empty buckets (larger clusters)
+ * osdmap: fix encoding bug (crashed kclient)
+ * msgr: simplified policy, failure model
+ * mon: less push, more pull
+ * mon: request routing. clients keep single session with single monitor
+ * mon cluster expansion works
+ * osd: fix pg parsing, restarts on larger clusters
+
+ -- sage <sage@newdream.net> Mon, 19 Oct 2009 15:20:00 -0800
+
ceph (0.16.1-1) unstable; urgency=low
* missing buffer.c
diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h
index f8f27e28a6b..ae523828c53 100644
--- a/src/include/ceph_fs.h
+++ b/src/include/ceph_fs.h
@@ -19,8 +19,8 @@
* Ceph release version
*/
#define CEPH_VERSION_MAJOR 0
-#define CEPH_VERSION_MINOR 16
-#define CEPH_VERSION_PATCH 1
+#define CEPH_VERSION_MINOR 17
+#define CEPH_VERSION_PATCH 0
#define _CEPH_STRINGIFY(x) #x
#define CEPH_STRINGIFY(x) _CEPH_STRINGIFY(x)