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
8edc147d
Commit
8edc147d
authored
Apr 29, 2018
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changelog for v2.2.3
parent
2972cb38
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
docs/changelog.rst
+13
-1
docs/conf.py
+1
-1
include/pybind11/detail/common.h
+1
-1
pybind11/_version.py
+1
-1
No files found.
docs/changelog.rst
View file @
8edc147d
...
...
@@ -9,9 +9,21 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
v2.2.3 (April 29, 2018)
-----------------------------------------------------
* The pybind11 header location detection was replaced by a new implementation
that no longer depends on ``pip`` internals (the recently released ``pip``
10 has restricted access to this API).
`#1190 <https://github.com/pybind/pybind11/pull/1190>`_.
* Small adjustment to an implementation detail to work around a compiler segmentation fault in Clang 3.3/3.4.
`#1350 <https://github.com/pybind/pybind11/pull/1350>`_.
* The minimal supported version of the Intel compiler was >= 17.0 since
pybind11 v2.1. This check is now explicit, and a compile-time error is raised
if the compiler does not meet the requirements.
if the compiler meet the requirement.
`#1363 <https://github.com/pybind/pybind11/pull/1363>`_.
* Fixed an endianness-related fault in the test suite.
`#1287 <https://github.com/pybind/pybind11/pull/1287>`_.
v2.2.2 (February 7, 2018)
-----------------------------------------------------
...
...
docs/conf.py
View file @
8edc147d
...
...
@@ -63,7 +63,7 @@ author = 'Wenzel Jakob'
# The short X.Y version.
version
=
'2.2'
# The full version, including alpha/beta/rc tags.
release
=
'2.2.
2
'
release
=
'2.2.
3
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
include/pybind11/detail/common.h
View file @
8edc147d
...
...
@@ -93,7 +93,7 @@
#define PYBIND11_VERSION_MAJOR 2
#define PYBIND11_VERSION_MINOR 2
#define PYBIND11_VERSION_PATCH
2
#define PYBIND11_VERSION_PATCH
3
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)
...
...
pybind11/_version.py
View file @
8edc147d
version_info
=
(
2
,
2
,
2
)
version_info
=
(
2
,
2
,
3
)
__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