From 6d4f26a2496ddcf0f36f55511a453242b693c3d0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 3 Jan 2014 08:56:48 -0600 Subject: [PATCH] Add BOOST_PREDEF_VERSION def to indicate to users the version of this library. Bump version to 1.1 for development. --- doc/predef.qbk | 4 ++-- include/boost/predef/version.h | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 include/boost/predef/version.h diff --git a/doc/predef.qbk b/doc/predef.qbk index 5e39065..b893305 100644 --- a/doc/predef.qbk +++ b/doc/predef.qbk @@ -1,8 +1,8 @@ [article Predef [quickbook 1.7] - [version 1.0] + [version 1.1] [authors [Rivera, Rene]] - [copyright 2005 Rene Rivera, 2008-2013 Redshift Software Inc] + [copyright 2005, 2008-2014 Rene Rivera] [purpose Identification and specification of predefined macros.] [license Distributed under the Boost Software License, Version 1.0. diff --git a/include/boost/predef/version.h b/include/boost/predef/version.h new file mode 100644 index 0000000..1e85df7 --- /dev/null +++ b/include/boost/predef/version.h @@ -0,0 +1,15 @@ +/* +Copyright Rene Rivera 2014 +Distributed under the Boost Software License, Version 1.0. +(See accompanying file LICENSE_1_0.txt or copy at +http://www.boost.org/LICENSE_1_0.txt) +*/ + +#ifndef BOOST_PREDEF_VERSION_H +#define BOOST_PREDEF_VERSION_H + +#include + +#define BOOST_PREDEF_VERSION BOOST_VERSION_NUMBER(1,1,0) + +#endif