diff options
author | Sage Weil <sage@newdream.net> | 2009-12-04 10:10:32 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-12-04 10:10:32 -0800 |
commit | 2f10137986ac661364ced4bbf77b7ea34d398c0f (patch) | |
tree | be43e3308a454b665a769c6002367cea0a2a7b8e | |
parent | a08d9619d5e19a39eaf425345a459d0e1f8f64aa (diff) | |
download | ceph-2f10137986ac661364ced4bbf77b7ea34d398c0f.tar.gz |
v0.18v0.18
-rw-r--r-- | RELEASE_CHECKLIST | 1 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 20 | ||||
-rw-r--r-- | src/include/ceph_fs.h | 2 |
4 files changed, 22 insertions, 3 deletions
diff --git a/RELEASE_CHECKLIST b/RELEASE_CHECKLIST index 951c397caa9..bdb506c6bc5 100644 --- a/RELEASE_CHECKLIST +++ b/RELEASE_CHECKLIST @@ -5,7 +5,6 @@ - adjust version in configure.ac - adjust version in src/include/ceph_fs.h -- adjust version in ceph.spec - add entry to debian/changelog, with proper version - commit - git tag version diff --git a/configure.ac b/configure.ac index 7ac73af7b9a..65bc297061e 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET # Automake -AM_INIT_AUTOMAKE(ceph, 0.17) +AM_INIT_AUTOMAKE(ceph, 0.18) AM_PROG_CC_C_O AM_PROG_LIBTOOL diff --git a/debian/changelog b/debian/changelog index 1d308df9208..02d1ea3ec6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +ceph (0.18) unstable; urgency=low + + * crush: selectable hash functions + * osdmap: selectable hash functions + * osd: basic ENOSPC handling + * big endian fixes + * mds restart fixes + * mds: fixed mds log trimming bug + * mds: fixed cap vs snap deadlock + * mds: fix journaling nesting problems + * mds: fix replay/reconnect race + * mds: misc journal replay, session fixes + * mds: fixed recursive accounting bug + * filestore: faster flushing + * uclient: snapshot fixes + * uclient: fixes for 32bit clients + * mon: safely bail (assert(0)) on write errors (like ENOSPC) + + -- Sage Weil <sage@newdream.net> Fri, 4 Dec 2009 10:01:00 -0800 + ceph (0.17) unstable; urgency=low * kclient: fix multiple mds mdsmap decoding diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h index 699196a10c6..e2fd0247827 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 17 +#define CEPH_VERSION_MINOR 18 #define CEPH_VERSION_PATCH 0 #define _CEPH_STRINGIFY(x) #x |