diff options
author | Sage Weil <sage@newdream.net> | 2009-10-19 15:19:51 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-10-19 15:19:51 -0700 |
commit | dac3a8c35fb40859cf29546756054b9ff9b85ebc (patch) | |
tree | 6c0034da62a0be0c5290ac407958be3e29d9582e | |
parent | 74be02f74a27c25fd7dc4207d392f7aef10fdf8e (diff) | |
download | ceph-dac3a8c35fb40859cf29546756054b9ff9b85ebc.tar.gz |
v0.17v0.17
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | src/include/ceph_fs.h | 4 |
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) |