diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 17 | ||||
-rw-r--r-- | src/include/ceph_fs.h | 2 |
3 files changed, 19 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 65bc297061e..117efed5edd 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET # Automake -AM_INIT_AUTOMAKE(ceph, 0.18) +AM_INIT_AUTOMAKE(ceph, 0.19) AM_PROG_CC_C_O AM_PROG_LIBTOOL diff --git a/debian/changelog b/debian/changelog index e6c01b4529d..5f5c191bd5a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +ceph (0.19-1) unstable; urgency=low + + * msgr: simplification, cleanup, fixes + * msgr: tids in message header (protocol change) + * msgr: feature bits during handshake + * disk format, compat/incompat features for disk format + * struct versioning throughout, to ease future disk format changes + * truncation fixes + * cephx: lots of fixes, mkcephfs support + * debian: packaging fixes + * rados: pool deletion + * osd: recovery fixes + * misc protocol changes + * misc bug fixes + + -- Sage Weil <sage@newdream.net> Wed, 17 Feb 2009 13:50:00 -0800 + ceph (0.18-1) unstable; urgency=low * crush: selectable hash functions diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h index 004aae59d4b..0c2241ef365 100644 --- a/src/include/ceph_fs.h +++ b/src/include/ceph_fs.h @@ -19,7 +19,7 @@ * Ceph release version */ #define CEPH_VERSION_MAJOR 0 -#define CEPH_VERSION_MINOR 18 +#define CEPH_VERSION_MINOR 19 #define CEPH_VERSION_PATCH 0 #define _CEPH_STRINGIFY(x) #x |