Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
95dc0695
Commit
95dc0695
authored
Apr 07, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
starting work on version 1.5
parent
0e6ca591
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
docs/release.rst
+1
-1
include/pybind11/common.h
+1
-1
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:
...
@@ -10,7 +10,7 @@ To release a new version of pybind11:
- ``conda-build conda.recipe --output``
- ``conda-build conda.recipe --output``
This should ouput the path of the generated tar.bz2 for the package
This should ouput the path of the generated tar.bz2 for the package
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
- ``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
- Get back to work
- Update ``_version.py`` (add 'dev' and increment minor).
- Update ``_version.py`` (add 'dev' and increment minor).
- Update version macros in ``include/pybind11/common.h``
- Update version macros in ``include/pybind11/common.h``
...
...
include/pybind11/common.h
View file @
95dc0695
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#endif
#endif
#define PYBIND11_VERSION_MAJOR 1
#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
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)
#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
))
__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