From 95dc0695b7b04b3ad13678adc5b4abd4ce615c70 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 7 Apr 2016 08:59:10 +0200 Subject: [PATCH] starting work on version 1.5 --- docs/release.rst | 2 +- include/pybind11/common.h | 2 +- pybind11/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index d7b69c9fe..b175228d3 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -10,7 +10,7 @@ To release a new version of pybind11: - ``conda-build conda.recipe --output`` This should ouput the path of the generated tar.bz2 for the package - ``conda-convert --platform all [path/to/tar.bz2] -o .`` - - For each platform name, ``anaconda-upload -u pybind ./platform/tarfile.tar.bz2`` + - ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done`` - Get back to work - Update ``_version.py`` (add 'dev' and increment minor). - Update version macros in ``include/pybind11/common.h`` diff --git a/include/pybind11/common.h b/include/pybind11/common.h index 3cefa93a9..bd3e4241a 100644 --- a/include/pybind11/common.h +++ b/include/pybind11/common.h @@ -31,7 +31,7 @@ #endif #define PYBIND11_VERSION_MAJOR 1 -#define PYBIND11_VERSION_MINOR 4 +#define PYBIND11_VERSION_MINOR 5 /// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode #if defined(_MSC_VER) diff --git a/pybind11/_version.py b/pybind11/_version.py index 15ebe9c3a..93cf8a709 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 4) +version_info = (1, 5, 'dev0') __version__ = '.'.join(map(str, version_info))