Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
95dc0695
Commit
95dc0695
authored
Apr 07, 2016
by
Wenzel Jakob
Browse files
starting work on version 1.5
parent
0e6ca591
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
docs/release.rst
docs/release.rst
+1
-1
include/pybind11/common.h
include/pybind11/common.h
+1
-1
pybind11/_version.py
pybind11/_version.py
+1
-1
No files found.
docs/release.rst
View file @
95dc0695
...
...
@@ -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``
...
...
include/pybind11/common.h
View file @
95dc0695
...
...
@@ -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)
...
...
pybind11/_version.py
View file @
95dc0695
version_info
=
(
1
,
4
)
version_info
=
(
1
,
5
,
'dev0'
)
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment