Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
54b6fdd4
Commit
54b6fdd4
authored
Apr 21, 2016
by
Wenzel Jakob
Browse files
starting work on the v1.6 release
parent
bb79d7bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
docs/release.rst
docs/release.rst
+2
-2
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 @
54b6fdd4
...
...
@@ -7,8 +7,8 @@ To release a new version of pybind11:
- ``python setup.py bdist_wheel upload``.
- Tag release date in ``doc/changelog.rst``.
- Tag the commit and push to anaconda.org
- ``git tag -a X.
X
-m '
[Release comment]
'``.
- ``conda-build conda.recipe
--output
``
- ``git tag -a
v
X.
Y
-m '
vX.Y release
'``.
- ``conda-build conda.recipe``
This should ouput the path of the generated tar.bz2 for the package
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
- ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done``
...
...
include/pybind11/common.h
View file @
54b6fdd4
...
...
@@ -31,7 +31,7 @@
#endif
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR
5
#define PYBIND11_VERSION_MINOR
6
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)
...
...
pybind11/_version.py
View file @
54b6fdd4
version_info
=
(
1
,
5
)
version_info
=
(
1
,
6
,
'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