From: Sage Weil Date: Mon, 19 Oct 2009 22:19:51 +0000 (-0700) Subject: v0.17 X-Git-Tag: v0.17^0 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dac3a8c35fb40859cf29546756054b9ff9b85ebc;p=ceph.git v0.17 --- 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 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)