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
d2385e8f
Commit
d2385e8f
authored
Mar 08, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ready for version 1.3
parent
309a85ba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
docs/changelog.rst
+9
-2
pybind11/_version.py
+1
-1
setup.py
+0
-1
No files found.
docs/changelog.rst
View file @
d2385e8f
...
@@ -3,14 +3,21 @@
...
@@ -3,14 +3,21 @@
Changelog
Changelog
#########
#########
1.3 (not yet released)
1.4 (not yet released)
--------------------------
TBD
1.3 (March 8, 2016)
--------------------------
--------------------------
* Added support for the Intel C++ compiler (v15+)
* Added support for the Intel C++ compiler (v15+)
* Added support for the STL unordered set/map data structures
* Added support for the STL unordered set/map data structures
* Added support for the STL linked list data structure
* NumPy-style broadcasting support in ``pybind11::vectorize``
* NumPy-style broadcasting support in ``pybind11::vectorize``
* pybind11 now displays more verbose error messages when ``arg::operator=()`` fails.
* pybind11 now displays more verbose error messages when ``arg::operator=()`` fails.
* Removed 'pybind11' python package whose purpose was never quite defined
* pybind11 internal data structures now live in a version-dependent namespace to avoid ABI issues
* Many, many bugfixes involving corner cases and advanced usage
1.2 (February 7, 2016)
1.2 (February 7, 2016)
--------------------------
--------------------------
...
...
pybind11/_version.py
View file @
d2385e8f
version_info
=
(
1
,
3
,
'dev0'
)
version_info
=
(
1
,
3
)
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
setup.py
View file @
d2385e8f
...
@@ -41,7 +41,6 @@ setup(
...
@@ -41,7 +41,6 @@ setup(
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'License :: OSI Approved :: BSD License'
,
'License :: OSI Approved :: BSD License'
,
],
],
keywords
=
'C++11, Python bindings'
,
keywords
=
'C++11, Python bindings'
,
...
...
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