diff options
author | Sage Weil <sage@newdream.net> | 2009-10-05 23:53:35 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-10-05 23:53:35 +0200 |
commit | 38dbaa5175cd7185c9b57657e90140d24aec7b68 (patch) | |
tree | 646f4ba911338f7bd24e669634809a7958a1cb6a | |
parent | uclient: fix null deref in unlink() on null dn (diff) | |
download | ceph-0.16.tar.xz ceph-0.16.zip |
v0.16v0.16
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | src/include/ceph_fs.h | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 6dca08dd90c..8e21be67e40 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET # Automake -AM_INIT_AUTOMAKE(ceph, 0.15) +AM_INIT_AUTOMAKE(ceph, 0.16) AM_PROG_CC_C_O AM_PROG_LIBTOOL diff --git a/debian/changelog b/debian/changelog index bf5975d5cd5..52c746eb1a4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +ceph (0.16-1) unstable; urgency=low + + * libceph: identify self + * hadoop: write to local osd + * disk format, wire changes + * use sockaddr_storage throughout + * kclient: fix msgr bug + * kclient: uninline strings, use pr_fmt, prefix frag_ macros + * kclient: lots of inline cleanups + * kclient: misc akpm review cleanups + + -- sage <sage@newdream.net> Tue, 05 Oct 2009 14:54:00 -0800 + ceph (0.15-1) unstable; urgency=low * msgr: clean up protocol checks; ack seq # fix diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h index 07482b216ef..64045c3a243 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 15 +#define CEPH_VERSION_MINOR 16 #define CEPH_VERSION_PATCH 0 #define _CEPH_STRINGIFY(x) #x |