blob: f4b99c53618c60f67b206999454c4cb44d66d5f7 [file] [log] [blame]
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +01001.. _changelog:
2
3Changelog
4#########
5
Wenzel Jakobed52f462016-12-26 13:18:26 +01006Starting with version 1.8.0, pybind11 releases use a `semantic versioning
Wenzel Jakobd3549d62016-12-23 16:01:04 +01007<http://semver.org>`_ policy.
Wenzel Jakobf9502152016-06-14 15:00:46 +02008
Wenzel Jakobd405b1b2017-03-22 22:20:07 +01009v2.2.0 (Not yet released)
10-----------------------------------------------------
11
Dean Moldovandb46a892017-08-13 22:25:15 +020012* Support for embedding the Python interpreter. See the
13 :doc:`documentation page </advanced/embedding>` for a
14 full overview of the new features.
15 `#774 <https://github.com/pybind/pybind11/pull/774>`_,
16 `#889 <https://github.com/pybind/pybind11/pull/889>`_,
17 `#892 <https://github.com/pybind/pybind11/pull/892>`_,
18 `#920 <https://github.com/pybind/pybind11/pull/920>`_.
19
20 .. code-block:: cpp
21
22 #include <pybind11/embed.h>
23 namespace py = pybind11;
24
25 int main() {
26 py::scoped_interpreter guard{}; // start the interpreter and keep it alive
27
28 py::print("Hello, World!"); // use the Python API
29 }
30
31* Support for inheriting from multiple C++ bases in Python.
32 `#693 <https://github.com/pybind/pybind11/pull/693>`_.
33
34 .. code-block:: python
35
36 from cpp_module import CppBase1, CppBase2
37
38 class PyDerived(CppBase1, CppBase2):
39 def __init__(self):
40 CppBase1.__init__(self) # C++ bases must be initialized explicitly
41 CppBase2.__init__(self)
42
43* ``PYBIND11_MODULE`` is now the preferred way to create module entry points.
44 ``PYBIND11_PLUGIN`` is deprecated. See :ref:`macros` for details.
45 `#879 <https://github.com/pybind/pybind11/pull/879>`_.
46
47 .. code-block:: cpp
48
49 // new
50 PYBIND11_MODULE(example, m) {
51 m.def("add", [](int a, int b) { return a + b; });
52 }
53
54 // old
55 PYBIND11_PLUGIN(example) {
56 py::module m("example");
57 m.def("add", [](int a, int b) { return a + b; });
58 return m.ptr();
59 }
60
61* pybind11's headers and build system now more strictly enforce hidden symbol
62 visibility for extension modules. This should be seamless for most users,
63 but see the upgrade guide if you use a custom build system.
64
65* Support for ``py::module_local`` types which allow multiple modules to
66 export the same C++ types without conflicts. This is useful for opaque
67 types like ``std::vector<int>``. ``py::bind_vector`` and ``py::bind_map``
68 now default to ``py::module_local`` if their elements are builtins or
69 local types. See :ref:`module_local` for details.
70 `#949 <https://github.com/pybind/pybind11/pull/949>`_,
71 `#981 <https://github.com/pybind/pybind11/pull/981>`_,
72 `#995 <https://github.com/pybind/pybind11/pull/995>`_,
73 `#997 <https://github.com/pybind/pybind11/pull/997>`_.
74
75* Custom constructors can now be added very easily using lambdas or factory
76 functions which return a class instance by value, pointer or holder. This
77 supersedes the old placement-new ``__init__`` technique.
78 See :ref:`custom_constructors` for details.
79 `#805 <https://github.com/pybind/pybind11/pull/997>`_.
80
81 .. code-block:: cpp
82
83 struct Example {
84 Example(std::string);
85 };
86
87 py::class_<Example>(m, "Example")
88 .def(py::init<std::string>()) // existing constructor
89 .def(py::init([](int n) { // custom constructor
90 return std::make_unique<Example>(std::to_string(n));
91 }));
92
93* Builtin support for converting C++17 standard library types and general
94 conversion improvements:
95
96 1. C++17 ``std::variant`` is supported right out of the box. C++11/14
97 equivalents (e.g. ``boost::variant``) can also be added with a simple
98 user-defined specialization. See :ref:`cpp17_container_casters` for details.
99 `#811 <https://github.com/pybind/pybind11/pull/811>`_,
100 `#845 <https://github.com/pybind/pybind11/pull/845>`_,
101 `#989 <https://github.com/pybind/pybind11/pull/989>`_.
102
103 2. Out-of-the-box support for C++17 ``std::string_view``.
104 `#906 <https://github.com/pybind/pybind11/pull/906>`_.
105
106 3. Improved compatibility of the builtin ``optional`` converter.
107 `#874 <https://github.com/pybind/pybind11/pull/874>`_.
108
109 4. The ``bool`` converter now accepts ``numpy.bool_`` and types which
110 define ``__bool__`` (Python 3.x) or ``__nonzero__`` (Python 2.7).
111 `#925 <https://github.com/pybind/pybind11/pull/925>`_.
112
113 5. C++-to-Python casters are now more efficient and move elements out
114 of rvalue containers whenever possible.
115 `#851 <https://github.com/pybind/pybind11/pull/851>`_,
116 `#936 <https://github.com/pybind/pybind11/pull/936>`_,
117 `#938 <https://github.com/pybind/pybind11/pull/938>`_.
118
119 6. Fixed ``bytes`` to ``std::string/char*`` conversion on Python 3.
120 `#817 <https://github.com/pybind/pybind11/pull/817>`_.
121
122 7. Fixed lifetime of temporary C++ objects created in Python-to-C++ conversions.
123 `#924 <https://github.com/pybind/pybind11/pull/924>`_.
124
125* Scope guard call policy for RAII types, e.g. ``py::call_guard<py::gil_scoped_release>()``.
126 See :ref:`call_policies` for details.
127 `#740 <https://github.com/pybind/pybind11/pull/740>`_.
128
129* Improved handling of types and exceptions across module boundaries.
130 `#915 <https://github.com/pybind/pybind11/pull/915>`_,
131 `#951 <https://github.com/pybind/pybind11/pull/951>`_,
132 `#995 <https://github.com/pybind/pybind11/pull/995>`_.
133
134* Fixed destruction order of ``py::keep_alive`` nurse/patient objects
135 in reference cycles.
136 `#856 <https://github.com/pybind/pybind11/pull/856>`_.
137
138* Numpy and buffer protocol related improvements:
139
140 1. Support for negative strides in Python buffer objects/numpy arrays. This
141 required changing integers from unsigned to signed for the related C++ APIs.
142 Note: If you have compiler warnings enabled, you may notice some new conversion
143 warnings after upgrading. These can be resolved with ``static_cast``.
144 `#782 <https://github.com/pybind/pybind11/pull/782>`_.
145
146 2. Support ``std::complex`` and arrays inside ``PYBIND11_NUMPY_DTYPE``.
147 `#831 <https://github.com/pybind/pybind11/pull/831>`_,
148 `#832 <https://github.com/pybind/pybind11/pull/832>`_.
149
150 3. Support for constructing ``py::buffer_info`` and ``py::arrays`` using
151 arbitrary containers or iterators instead of requiring a ``std::vector``.
152 `#788 <https://github.com/pybind/pybind11/pull/788>`_,
153 `#822 <https://github.com/pybind/pybind11/pull/822>`_,
154 `#860 <https://github.com/pybind/pybind11/pull/860>`_.
155
156 4. Explicitly check numpy version and require >= 1.7.0.
157 `#819 <https://github.com/pybind/pybind11/pull/819>`_.
158
159* Support for allowing/prohibiting ``None`` for specific arguments and improved
160 ``None`` overload resolution order. See :ref:`none_arguments` for details.
161 `#843 <https://github.com/pybind/pybind11/pull/843>`_.
162 `#859 <https://github.com/pybind/pybind11/pull/859>`_.
163
164* Added ``py::exec()`` as a shortcut for ``py::eval<py::eval_statements>()``
165 and support for C++11 raw string literals as input. See :ref:`eval`.
166 `#766 <https://github.com/pybind/pybind11/pull/766>`_,
167 `#827 <https://github.com/pybind/pybind11/pull/827>`_.
168
169* ``py::vectorize()`` ignores non-vectorizable arguments and supports
170 member functions.
171 `#762 <https://github.com/pybind/pybind11/pull/762>`_.
172
173* Support for bound methods as callbacks (``pybind11/functional.h``).
174 `#815 <https://github.com/pybind/pybind11/pull/815>`_.
175
176* Allow aliasing pybind11 methods: ``cls.attr("foo") = cls.attr("bar")``.
177 `#802 <https://github.com/pybind/pybind11/pull/802>`_.
178
179* Don't allow mixed static/non-static overloads.
180 `#804 <https://github.com/pybind/pybind11/pull/804>`_.
181
182* Fixed overriding static properties in derived classes.
183 `#784 <https://github.com/pybind/pybind11/pull/784>`_.
184
185* Improved deduction of member function of derived class when the bases
186 isn't registered with pybind11.
187 `#855 <https://github.com/pybind/pybind11/pull/855>`_.
188
189 .. code-block:: cpp
190
191 struct Base {
192 int foo() { return 42; }
193 }
194
195 struct Derived : Base {}
196
197 // Now works, but previously required also binding `Base`
198 py::class_<Derived>(m, "Derived")
199 .def("foo", &Derived::foo); // function is actually from `Base`
200
201* Fixed issues with multiple inheritance with offset base/derived pointers.
202 `#812 <https://github.com/pybind/pybind11/pull/812>`_,
203 `#866 <https://github.com/pybind/pybind11/pull/866>`_,
204 `#960 <https://github.com/pybind/pybind11/pull/960>`_.
205
206* Improved support for the ``/std:c++14`` and ``/std:c++latest`` modes
207 on MSVC 2017.
208 `#841 <https://github.com/pybind/pybind11/pull/841>`_,
209 `#999 <https://github.com/pybind/pybind11/pull/999>`_.
210
211* Fixed detection of private operator new on MSVC.
212 `#893 <https://github.com/pybind/pybind11/pull/893>`_,
213 `#918 <https://github.com/pybind/pybind11/pull/918>`_.
214
215* Intel C++ compiler compatibility fixes.
216 `#937 <https://github.com/pybind/pybind11/pull/937>`_.
217
218* Fixed implicit conversion of `py::enum_` to integer types on Python 2.7.
219 `#821 <https://github.com/pybind/pybind11/pull/821>`_.
220
221* Fixed ``__truediv__`` on Python 2 and ``__itruediv__`` on Python 3.
222 `#867 <https://github.com/pybind/pybind11/pull/867>`_.
223
224* ``py::capsule`` objects now support the ``name`` attribute. This is useful
225 for interfacing with ``scipy.LowLevelCallable``.
226 `#902 <https://github.com/pybind/pybind11/pull/902>`_.
227
228* Fixed ``py::make_iterator``'s ``__next__()`` for past-the-end calls.
229 `#897 <https://github.com/pybind/pybind11/pull/897>`_.
230
231* Added ``error_already_set::matches()`` for checking Python exceptions.
232 `#772 <https://github.com/pybind/pybind11/pull/772>`_.
233
234* Deprecated ``py::error_already_set::clear()``. It's no longer needed
235 following a simplification of the ``py::error_already_set`` class.
236 `#954 <https://github.com/pybind/pybind11/pull/954>`_.
237
238* Deprecated ``py::handle::operator==()`` in favor of ``py::handle::is()``
239 `#825 <https://github.com/pybind/pybind11/pull/825>`_.
240
241* Deprecated ``py::object::borrowed``/``py::object::stolen``.
242 Use ``py::object::borrowed_t{}``/``py::object::stolen_t{}`` instead.
243 `#771 <https://github.com/pybind/pybind11/pull/771>`_.
244
245* Additional compile-time and run-time error checking and more informative messages.
246 `#786 <https://github.com/pybind/pybind11/pull/786>`_,
247 `#794 <https://github.com/pybind/pybind11/pull/794>`_,
248 `#803 <https://github.com/pybind/pybind11/pull/803>`_.
249
250* Various minor improvements and fixes.
251 `#764 <https://github.com/pybind/pybind11/pull/764>`_,
252 `#791 <https://github.com/pybind/pybind11/pull/791>`_,
253 `#795 <https://github.com/pybind/pybind11/pull/795>`_,
254 `#840 <https://github.com/pybind/pybind11/pull/840>`_,
255 `#844 <https://github.com/pybind/pybind11/pull/844>`_,
256 `#846 <https://github.com/pybind/pybind11/pull/846>`_,
257 `#849 <https://github.com/pybind/pybind11/pull/849>`_,
258 `#858 <https://github.com/pybind/pybind11/pull/858>`_,
259 `#862 <https://github.com/pybind/pybind11/pull/862>`_,
260 `#871 <https://github.com/pybind/pybind11/pull/871>`_,
261 `#872 <https://github.com/pybind/pybind11/pull/872>`_,
262 `#881 <https://github.com/pybind/pybind11/pull/881>`_,
263 `#888 <https://github.com/pybind/pybind11/pull/888>`_,
264 `#899 <https://github.com/pybind/pybind11/pull/899>`_,
265 `#928 <https://github.com/pybind/pybind11/pull/928>`_,
266 `#931 <https://github.com/pybind/pybind11/pull/931>`_,
267 `#944 <https://github.com/pybind/pybind11/pull/944>`_,
268 `#950 <https://github.com/pybind/pybind11/pull/950>`_,
269 `#952 <https://github.com/pybind/pybind11/pull/952>`_,
270 `#962 <https://github.com/pybind/pybind11/pull/962>`_,
271 `#965 <https://github.com/pybind/pybind11/pull/965>`_,
272 `#970 <https://github.com/pybind/pybind11/pull/970>`_,
273 `#979 <https://github.com/pybind/pybind11/pull/979>`_,
274 `#978 <https://github.com/pybind/pybind11/pull/978>`_,
275 `#986 <https://github.com/pybind/pybind11/pull/986>`_.
276
277* Testing improvements.
278 `#798 <https://github.com/pybind/pybind11/pull/798>`_,
279 `#882 <https://github.com/pybind/pybind11/pull/882>`_,
280 `#898 <https://github.com/pybind/pybind11/pull/898>`_,
281 `#900 <https://github.com/pybind/pybind11/pull/900>`_,
282 `#921 <https://github.com/pybind/pybind11/pull/921>`_,
283 `#923 <https://github.com/pybind/pybind11/pull/923>`_,
284 `#963 <https://github.com/pybind/pybind11/pull/963>`_.
285
Wenzel Jakobd405b1b2017-03-22 22:20:07 +0100286
Wenzel Jakobdb200952017-04-07 02:03:46 +0200287v2.1.1 (April 7, 2017)
288-----------------------------------------------------
289
290* Fixed minimum version requirement for MSVC 2015u3
291 `#773 <https://github.com/pybind/pybind11/pull/773>`_.
292
Wenzel Jakobd405b1b2017-03-22 22:20:07 +0100293v2.1.0 (March 22, 2017)
Wenzel Jakoba9730be2017-01-06 14:18:44 +0100294-----------------------------------------------------
295
Wenzel Jakob62e5fef2017-03-22 22:07:45 +0100296* pybind11 now performs function overload resolution in two phases. The first
297 phase only considers exact type matches, while the second allows for implicit
298 conversions to take place. A special ``noconvert()`` syntax can be used to
299 completely disable implicit conversions for specific arguments.
300 `#643 <https://github.com/pybind/pybind11/pull/643>`_,
301 `#634 <https://github.com/pybind/pybind11/pull/634>`_,
302 `#650 <https://github.com/pybind/pybind11/pull/650>`_.
303
304* Fixed a regression where static properties no longer worked with classes
305 using multiple inheritance. The ``py::metaclass`` attribute is no longer
306 necessary (and deprecated as of this release) when binding classes with
307 static properties.
308 `#679 <https://github.com/pybind/pybind11/pull/679>`_,
309
310* Classes bound using ``pybind11`` can now use custom metaclasses.
311 `#679 <https://github.com/pybind/pybind11/pull/679>`_,
312
313* ``py::args`` and ``py::kwargs`` can now be mixed with other positional
314 arguments when binding functions using pybind11.
315 `#611 <https://github.com/pybind/pybind11/pull/611>`_.
316
317* Improved support for C++11 unicode string and character types; added
318 extensive documentation regarding pybind11's string conversion behavior.
319 `#624 <https://github.com/pybind/pybind11/pull/624>`_,
320 `#636 <https://github.com/pybind/pybind11/pull/636>`_,
321 `#715 <https://github.com/pybind/pybind11/pull/715>`_.
322
323* pybind11 can now avoid expensive copies when converting Eigen arrays to NumPy
324 arrays (and vice versa). `#610 <https://github.com/pybind/pybind11/pull/610>`_.
325
326* The "fast path" in ``py::vectorize`` now works for any full-size group of C or
327 F-contiguous arrays. The non-fast path is also faster since it no longer performs
328 copies of the input arguments (except when type conversions are necessary).
329 `#610 <https://github.com/pybind/pybind11/pull/610>`_.
330
331* Added fast, unchecked access to NumPy arrays via a proxy object.
332 `#746 <https://github.com/pybind/pybind11/pull/746>`_.
333
Wenzel Jakob0d929382017-03-22 22:52:29 +0100334* Transparent support for class-specific ``operator new`` and
Wenzel Jakob62e5fef2017-03-22 22:07:45 +0100335 ``operator delete`` implementations.
336 `#755 <https://github.com/pybind/pybind11/pull/755>`_.
337
338* Slimmer and more efficient STL-compatible iterator interface for sequence types.
339 `#662 <https://github.com/pybind/pybind11/pull/662>`_.
340
341* Improved custom holder type support.
342 `#607 <https://github.com/pybind/pybind11/pull/607>`_.
343
344* ``nullptr`` to ``None`` conversion fixed in various builtin type casters.
345 `#732 <https://github.com/pybind/pybind11/pull/732>`_.
346
347* ``enum_`` now exposes its members via a special ``__members__`` attribute.
348 `#666 <https://github.com/pybind/pybind11/pull/666>`_.
349
350* ``std::vector`` bindings created using ``stl_bind.h`` can now optionally
351 implement the buffer protocol. `#488 <https://github.com/pybind/pybind11/pull/488>`_.
352
353* Automated C++ reference documentation using doxygen and breathe.
354 `#598 <https://github.com/pybind/pybind11/pull/598>`_.
355
356* Added minimum compiler version assertions.
357 `#727 <https://github.com/pybind/pybind11/pull/727>`_.
358
359* Improved compatibility with C++1z.
360 `#677 <https://github.com/pybind/pybind11/pull/677>`_.
361
362* Improved ``py::capsule`` API. Can be used to implement cleanup
363 callbacks that are involved at module destruction time.
364 `#752 <https://github.com/pybind/pybind11/pull/752>`_.
365
366* Various minor improvements and fixes.
367 `#595 <https://github.com/pybind/pybind11/pull/595>`_,
368 `#588 <https://github.com/pybind/pybind11/pull/588>`_,
369 `#589 <https://github.com/pybind/pybind11/pull/589>`_,
370 `#603 <https://github.com/pybind/pybind11/pull/603>`_,
371 `#619 <https://github.com/pybind/pybind11/pull/619>`_,
372 `#648 <https://github.com/pybind/pybind11/pull/648>`_,
373 `#695 <https://github.com/pybind/pybind11/pull/695>`_,
374 `#720 <https://github.com/pybind/pybind11/pull/720>`_,
375 `#723 <https://github.com/pybind/pybind11/pull/723>`_,
376 `#729 <https://github.com/pybind/pybind11/pull/729>`_,
377 `#724 <https://github.com/pybind/pybind11/pull/724>`_,
378 `#742 <https://github.com/pybind/pybind11/pull/742>`_,
379 `#753 <https://github.com/pybind/pybind11/pull/753>`_.
Wenzel Jakoba9730be2017-01-06 14:18:44 +0100380
Wenzel Jakobf8dafe92017-01-04 15:09:49 +0100381v2.0.1 (Jan 4, 2017)
382-----------------------------------------------------
383
384* Fix pointer to reference error in type_caster on MSVC
385 `#583 <https://github.com/pybind/pybind11/pull/583>`_.
386
387* Fixed a segmentation in the test suite due to a typo
388 `cd7eac <https://github.com/pybind/pybind11/commit/cd7eac>`_.
389
Wenzel Jakobe33ef9c2017-01-01 13:55:06 +0100390v2.0.0 (Jan 1, 2017)
Wenzel Jakobed52f462016-12-26 13:18:26 +0100391-----------------------------------------------------
392
393* Fixed a reference counting regression affecting types with custom metaclasses
394 (introduced in v2.0.0-rc1).
395 `#571 <https://github.com/pybind/pybind11/pull/571>`_.
396
397* Quenched a CMake policy warning.
398 `#570 <https://github.com/pybind/pybind11/pull/570>`_.
399
Wenzel Jakobe33ef9c2017-01-01 13:55:06 +0100400v2.0.0-rc1 (Dec 23, 2016)
Wenzel Jakobf88af0c2016-06-22 13:52:31 +0200401-----------------------------------------------------
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200402
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100403The pybind11 developers are excited to issue a release candidate of pybind11
404with a subsequent v2.0.0 release planned in early January next year.
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200405
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100406An incredible amount of effort by went into pybind11 over the last ~5 months,
407leading to a release that is jam-packed with exciting new features and numerous
Wenzel Jakobf8dafe92017-01-04 15:09:49 +0100408usability improvements. The following list links PRs or individual commits
Wenzel Jakobed52f462016-12-26 13:18:26 +0100409whenever applicable.
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100410
411Happy Christmas!
412
413* Support for binding C++ class hierarchies that make use of multiple
414 inheritance. `#410 <https://github.com/pybind/pybind11/pull/410>`_.
415
416* PyPy support: pybind11 now supports nightly builds of PyPy and will
417 interoperate with the future 5.7 release. No code changes are necessary,
418 everything "just" works as usual. Note that we only target the Python 2.7
419 branch for now; support for 3.x will be added once its ``cpyext`` extension
Wenzel Jakobed52f462016-12-26 13:18:26 +0100420 support catches up. A few minor features remain unsupported for the time
421 being (notably dynamic attributes in custom types).
422 `#527 <https://github.com/pybind/pybind11/pull/527>`_.
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100423
424* Significant work on the documentation -- in particular, the monolitic
425 ``advanced.rst`` file was restructured into a easier to read hierarchical
426 organization. `#448 <https://github.com/pybind/pybind11/pull/448>`_.
427
428* Many NumPy-related improvements:
429
430 1. Object-oriented API to access and modify NumPy ``ndarray`` instances,
431 replicating much of the corresponding NumPy C API functionality.
432 `#402 <https://github.com/pybind/pybind11/pull/402>`_.
433
434 2. NumPy array ``dtype`` array descriptors are now first-class citizens and
435 are exposed via a new class ``py::dtype``.
436
437 3. Structured dtypes can be registered using the ``PYBIND11_NUMPY_DTYPE()``
438 macro. Special ``array`` constructors accepting dtype objects were also
439 added.
440
441 One potential caveat involving this change: format descriptor strings
442 should now be accessed via ``format_descriptor::format()`` (however, for
443 compatibility purposes, the old syntax ``format_descriptor::value`` will
444 still work for non-structured data types). `#308
445 <https://github.com/pybind/pybind11/pull/308>`_.
446
447 4. Further improvements to support structured dtypes throughout the system.
448 `#472 <https://github.com/pybind/pybind11/pull/472>`_,
449 `#474 <https://github.com/pybind/pybind11/pull/474>`_,
450 `#459 <https://github.com/pybind/pybind11/pull/459>`_,
451 `#453 <https://github.com/pybind/pybind11/pull/453>`_,
452 `#452 <https://github.com/pybind/pybind11/pull/452>`_, and
453 `#505 <https://github.com/pybind/pybind11/pull/505>`_.
454
455 5. Fast access operators. `#497 <https://github.com/pybind/pybind11/pull/497>`_.
456
457 6. Constructors for arrays whose storage is owned by another object.
458 `#440 <https://github.com/pybind/pybind11/pull/440>`_.
459
460 7. Added constructors for ``array`` and ``array_t`` explicitly accepting shape
461 and strides; if strides are not provided, they are deduced assuming
462 C-contiguity. Also added simplified constructors for 1-dimensional case.
463
464 8. Added buffer/NumPy support for ``char[N]`` and ``std::array<char, N>`` types.
465
466 9. Added ``memoryview`` wrapper type which is constructible from ``buffer_info``.
467
468* Eigen: many additional conversions and support for non-contiguous
469 arrays/slices.
470 `#427 <https://github.com/pybind/pybind11/pull/427>`_,
471 `#315 <https://github.com/pybind/pybind11/pull/315>`_,
472 `#316 <https://github.com/pybind/pybind11/pull/316>`_,
473 `#312 <https://github.com/pybind/pybind11/pull/312>`_, and
474 `#267 <https://github.com/pybind/pybind11/pull/267>`_
475
476* Incompatible changes in ``class_<...>::class_()``:
477
478 1. Declarations of types that provide access via the buffer protocol must
479 now include the ``py::buffer_protocol()`` annotation as an argument to
480 the ``class_`` constructor.
481
482 2. Declarations of types that require a custom metaclass (i.e. all classes
483 which include static properties via commands such as
484 ``def_readwrite_static()``) must now include the ``py::metaclass()``
485 annotation as an argument to the ``class_`` constructor.
486
487 These two changes were necessary to make type definitions in pybind11
488 future-proof, and to support PyPy via its cpyext mechanism. `#527
489 <https://github.com/pybind/pybind11/pull/527>`_.
490
491
492 3. This version of pybind11 uses a redesigned mechnism for instantiating
493 trempoline classes that are used to override virtual methods from within
494 Python. This led to the following user-visible syntax change: instead of
495
496 .. code-block:: cpp
497
498 py::class_<TrampolineClass>("MyClass")
499 .alias<MyClass>()
500 ....
501
502 write
503
504 .. code-block:: cpp
505
506 py::class_<MyClass, TrampolineClass>("MyClass")
507 ....
508
509 Importantly, both the original and the trampoline class are now
510 specified as an arguments (in arbitrary order) to the ``py::class_``
511 template, and the ``alias<..>()`` call is gone. The new scheme has zero
512 overhead in cases when Python doesn't override any functions of the
513 underlying C++ class. `rev. 86d825
514 <https://github.com/pybind/pybind11/commit/86d825>`_.
515
Wenzel Jakobe6b2f752016-07-10 10:54:46 +0200516* Added ``eval`` and ``eval_file`` functions for evaluating expressions and
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100517 statements from a string or file. `rev. 0d3fc3
518 <https://github.com/pybind/pybind11/commit/0d3fc3>`_.
519
520* pybind11 can now create types with a modifiable dictionary.
521 `#437 <https://github.com/pybind/pybind11/pull/437>`_ and
522 `#444 <https://github.com/pybind/pybind11/pull/444>`_.
523
524* Support for translation of arbitrary C++ exceptions to Python counterparts.
525 `#296 <https://github.com/pybind/pybind11/pull/296>`_ and
526 `#273 <https://github.com/pybind/pybind11/pull/273>`_.
527
528* Report full backtraces through mixed C++/Python code, better reporting for
529 import errors, fixed GIL management in exception processing.
530 `#537 <https://github.com/pybind/pybind11/pull/537>`_,
531 `#494 <https://github.com/pybind/pybind11/pull/494>`_,
532 `rev. e72d95 <https://github.com/pybind/pybind11/commit/e72d95>`_, and
533 `rev. 099d6e <https://github.com/pybind/pybind11/commit/099d6e>`_.
534
535* Support for bit-level operations, comparisons, and serialization of C++
536 enumerations. `#503 <https://github.com/pybind/pybind11/pull/503>`_,
537 `#508 <https://github.com/pybind/pybind11/pull/508>`_,
538 `#380 <https://github.com/pybind/pybind11/pull/380>`_,
539 `#309 <https://github.com/pybind/pybind11/pull/309>`_.
540 `#311 <https://github.com/pybind/pybind11/pull/311>`_.
541
542* The ``class_`` constructor now accepts its template arguments in any order.
543 `#385 <https://github.com/pybind/pybind11/pull/385>`_.
544
545* Attribute and item accessors now have a more complete interface which makes
546 it possible to chain attributes as in
547 ``obj.attr("a")[key].attr("b").attr("method")(1, 2, 3)``. `#425
548 <https://github.com/pybind/pybind11/pull/425>`_.
549
550* Major redesign of the default and conversion constructors in ``pytypes.h``.
551 `#464 <https://github.com/pybind/pybind11/pull/464>`_.
552
553* Added built-in support for ``std::shared_ptr`` holder type. It is no longer
554 necessary to to include a declaration of the form
555 ``PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T>)`` (though continuing to
556 do so won't cause an error).
557 `#454 <https://github.com/pybind/pybind11/pull/454>`_.
558
559* New ``py::overload_cast`` casting operator to select among multiple possible
560 overloads of a function. An example:
561
562 .. code-block:: cpp
563
564 py::class_<Pet>(m, "Pet")
565 .def("set", py::overload_cast<int>(&Pet::set), "Set the pet's age")
566 .def("set", py::overload_cast<const std::string &>(&Pet::set), "Set the pet's name");
567
568 This feature only works on C++14-capable compilers.
569 `#541 <https://github.com/pybind/pybind11/pull/541>`_.
570
571* C++ types are automatically cast to Python types, e.g. when assigning
572 them as an attribute. For instance, the following is now legal:
573
574 .. code-block:: cpp
575
576 py::module m = /* ... */
577 m.attr("constant") = 123;
578
579 (Previously, a ``py::cast`` call was necessary to avoid a compilation error.)
580 `#551 <https://github.com/pybind/pybind11/pull/551>`_.
581
582* Redesigned ``pytest``-based test suite. `#321 <https://github.com/pybind/pybind11/pull/321>`_.
583
584* Instance tracking to detect reference leaks in test suite. `#324 <https://github.com/pybind/pybind11/pull/324>`_
585
586* pybind11 can now distinguish between multiple different instances that are
587 located at the same memory address, but which have different types.
588 `#329 <https://github.com/pybind/pybind11/pull/329>`_.
589
590* Improved logic in ``move`` return value policy.
591 `#510 <https://github.com/pybind/pybind11/pull/510>`_,
592 `#297 <https://github.com/pybind/pybind11/pull/297>`_.
593
594* Generalized unpacking API to permit calling Python functions from C++ using
595 notation such as ``foo(a1, a2, *args, "ka"_a=1, "kb"_a=2, **kwargs)``. `#372 <https://github.com/pybind/pybind11/pull/372>`_.
596
597* ``py::print()`` function whose behavior matches that of the native Python
598 ``print()`` function. `#372 <https://github.com/pybind/pybind11/pull/372>`_.
599
600* Added ``py::dict`` keyword constructor:``auto d = dict("number"_a=42,
601 "name"_a="World");``. `#372 <https://github.com/pybind/pybind11/pull/372>`_.
602
603* Added ``py::str::format()`` method and ``_s`` literal: ``py::str s = "1 + 2
604 = {}"_s.format(3);``. `#372 <https://github.com/pybind/pybind11/pull/372>`_.
605
606* Added ``py::repr()`` function which is equivalent to Python's builtin
607 ``repr()``. `#333 <https://github.com/pybind/pybind11/pull/333>`_.
608
609* Improved construction and destruction logic for holder types. It is now
610 possible to reference instances with smart pointer holder types without
611 constructing the holder if desired. The ``PYBIND11_DECLARE_HOLDER_TYPE``
612 macro now accepts an optional second parameter to indicate whether the holder
613 type uses intrusive reference counting.
614 `#533 <https://github.com/pybind/pybind11/pull/533>`_ and
615 `#561 <https://github.com/pybind/pybind11/pull/561>`_.
616
617* Mapping a stateless C++ function to Python and back is now "for free" (i.e.
618 no extra indirections or argument conversion overheads). `rev. 954b79
619 <https://github.com/pybind/pybind11/commit/954b79>`_.
620
621* Bindings for ``std::valarray<T>``.
622 `#545 <https://github.com/pybind/pybind11/pull/545>`_.
623
624* Improved support for C++17 capable compilers.
625 `#562 <https://github.com/pybind/pybind11/pull/562>`_.
626
627* Bindings for ``std::optional<t>``.
628 `#475 <https://github.com/pybind/pybind11/pull/475>`_,
629 `#476 <https://github.com/pybind/pybind11/pull/476>`_,
630 `#479 <https://github.com/pybind/pybind11/pull/479>`_,
631 `#499 <https://github.com/pybind/pybind11/pull/499>`_, and
632 `#501 <https://github.com/pybind/pybind11/pull/501>`_.
633
634* ``stl_bind.h``: general improvements and support for ``std::map`` and
635 ``std::unordered_map``.
636 `#490 <https://github.com/pybind/pybind11/pull/490>`_,
637 `#282 <https://github.com/pybind/pybind11/pull/282>`_,
638 `#235 <https://github.com/pybind/pybind11/pull/235>`_.
639
640* The ``std::tuple``, ``std::pair``, ``std::list``, and ``std::vector`` type
641 casters now accept any Python sequence type as input. `rev. 107285
642 <https://github.com/pybind/pybind11/commit/107285>`_.
643
644* Improved CMake Python detection on multi-architecture Linux.
645 `#532 <https://github.com/pybind/pybind11/pull/532>`_.
646
647* Infrastructure to selectively disable or enable parts of the automatically
648 generated docstrings. `#486 <https://github.com/pybind/pybind11/pull/486>`_.
649
650* ``reference`` and ``reference_internal`` are now the default return value
651 properties for static and non-static properties, respectively. `#473
652 <https://github.com/pybind/pybind11/pull/473>`_. (the previous defaults
653 were ``automatic``). `#473 <https://github.com/pybind/pybind11/pull/473>`_.
654
655* Support for ``std::unique_ptr`` with non-default deleters or no deleter at
656 all (``py::nodelete``). `#384 <https://github.com/pybind/pybind11/pull/384>`_.
657
Wenzel Jakob3c796712016-12-23 16:19:36 +0100658* Deprecated ``handle::call()`` method. The new syntax to call Python
659 functions is simply ``handle()``. It can also be invoked explicitly via
Wenzel Jakobd3549d62016-12-23 16:01:04 +0100660 ``handle::operator<X>()``, where ``X`` is an optional return value policy.
661
662* Print more informative error messages when ``make_tuple()`` or ``cast()``
663 fail. `#262 <https://github.com/pybind/pybind11/pull/262>`_.
664
665* Creation of holder types for classes deriving from
666 ``std::enable_shared_from_this<>`` now also works for ``const`` values.
667 `#260 <https://github.com/pybind/pybind11/pull/260>`_.
668
669* ``make_iterator()`` improvements for better compatibility with various
670 types (now uses prefix increment operator); it now also accepts iterators
671 with different begin/end types as long as they are equality comparable.
672 `#247 <https://github.com/pybind/pybind11/pull/247>`_.
673
674* ``arg()`` now accepts a wider range of argument types for default values.
675 `#244 <https://github.com/pybind/pybind11/pull/244>`_.
676
677* Support ``keep_alive`` where the nurse object may be ``None``. `#341
678 <https://github.com/pybind/pybind11/pull/341>`_.
679
680* Added constructors for ``str`` and ``bytes`` from zero-terminated char
681 pointers, and from char pointers and length. Added constructors for ``str``
682 from ``bytes`` and for ``bytes`` from ``str``, which will perform UTF-8
683 decoding/encoding as required.
684
685* Many other improvements of library internals without user-visible changes
686
Wenzel Jakoba720a602016-07-12 18:02:13 +0200687
6881.8.1 (July 12, 2016)
689----------------------
Wenzel Jakobc47d4982016-07-11 23:40:28 +0200690* Fixed a rare but potentially very severe issue when the garbage collector ran
691 during pybind11 type creation.
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200692
Wenzel Jakobf9502152016-06-14 15:00:46 +02006931.8.0 (June 14, 2016)
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200694----------------------
695* Redesigned CMake build system which exports a convenient
696 ``pybind11_add_module`` function to parent projects.
697* ``std::vector<>`` type bindings analogous to Boost.Python's ``indexing_suite``
698* Transparent conversion of sparse and dense Eigen matrices and vectors (``eigen.h``)
699* Added an ``ExtraFlags`` template argument to the NumPy ``array_t<>`` wrapper
700 to disable an enforced cast that may lose precision, e.g. to create overloads
701 for different precisions and complex vs real-valued matrices.
Wenzel Jakob3f200fa2016-05-17 15:35:29 +0200702* Prevent implicit conversion of floating point values to integral types in
703 function arguments
Wenzel Jakob163ac2e2016-05-03 14:16:18 +0200704* Fixed incorrect default return value policy for functions returning a shared
705 pointer
Wenzel Jakob38d8b8c2016-05-31 09:53:28 +0200706* Don't allow registering a type via ``class_`` twice
Wenzel Jakob163ac2e2016-05-03 14:16:18 +0200707* Don't allow casting a ``None`` value into a C++ lvalue reference
708* Fixed a crash in ``enum_::operator==`` that was triggered by the ``help()`` command
709* Improved detection of whether or not custom C++ types can be copy/move-constructed
710* Extended ``str`` type to also work with ``bytes`` instances
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200711* Added a ``"name"_a`` user defined string literal that is equivalent to ``py::arg("name")``.
712* When specifying function arguments via ``py::arg``, the test that verifies
713 the number of arguments now runs at compile time.
Wenzel Jakob163ac2e2016-05-03 14:16:18 +0200714* Added ``[[noreturn]]`` attribute to ``pybind11_fail()`` to quench some
715 compiler warnings
Wenzel Jakob86d825f2016-05-26 13:19:27 +0200716* List function arguments in exception text when the dispatch code cannot find
717 a matching overload
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200718* Added ``PYBIND11_OVERLOAD_NAME`` and ``PYBIND11_OVERLOAD_PURE_NAME`` macros which
Wenzel Jakobf9502152016-06-14 15:00:46 +0200719 can be used to override virtual methods whose name differs in C++ and Python
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200720 (e.g. ``__call__`` and ``operator()``)
Wenzel Jakob163ac2e2016-05-03 14:16:18 +0200721* Various minor ``iterator`` and ``make_iterator()`` improvements
Wenzel Jakob86d825f2016-05-26 13:19:27 +0200722* Transparently support ``__bool__`` on Python 2.x and Python 3.x
723* Fixed issue with destructor of unpickled object not being called
Wenzel Jakob163ac2e2016-05-03 14:16:18 +0200724* Minor CMake build system improvements on Windows
Wenzel Jakob86d825f2016-05-26 13:19:27 +0200725* New ``pybind11::args`` and ``pybind11::kwargs`` types to create functions which
726 take an arbitrary number of arguments and keyword arguments
727* New syntax to call a Python function from C++ using ``*args`` and ``*kwargs``
Wenzel Jakob1cbe7ef2016-06-14 14:55:10 +0200728* The functions ``def_property_*`` now correctly process docstring arguments (these
729 formerly caused a segmentation fault)
730* Many ``mkdoc.py`` improvements (enumerations, template arguments, ``DOC()``
731 macro accepts more arguments)
732* Cygwin support
733* Documentation improvements (pickling support, ``keep_alive``, macro usage)
Wenzel Jakobc4d7ccd2016-04-30 22:00:44 +0200734
Wenzel Jakobe70b2ab2016-04-30 19:58:33 +02007351.7 (April 30, 2016)
Wenzel Jakobbb79d7b2016-04-21 12:23:20 +0200736----------------------
Wenzel Jakob1ac22e32016-04-25 23:25:40 +0200737* Added a new ``move`` return value policy that triggers C++11 move semantics.
Wenzel Jakobdd7ec342016-04-29 10:06:24 +0200738 The automatic return value policy falls back to this case whenever a rvalue
Wenzel Jakob1ac22e32016-04-25 23:25:40 +0200739 reference is encountered
Wenzel Jakobe84f5572016-04-26 23:19:19 +0200740* Significantly more general GIL state routines that are used instead of
741 Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API
Wenzel Jakobdd7ec342016-04-29 10:06:24 +0200742* Redesign of opaque types that drastically simplifies their usage
Wenzel Jakobe70b2ab2016-04-30 19:58:33 +0200743* Extended ability to pass values of type ``[const] void *``
Wenzel Jakob1ac22e32016-04-25 23:25:40 +0200744* ``keep_alive`` fix: don't fail when there is no patient
Wenzel Jakobdd7ec342016-04-29 10:06:24 +0200745* ``functional.h``: acquire the GIL before calling a Python function
Wenzel Jakob1ac22e32016-04-25 23:25:40 +0200746* Added Python RAII type wrappers ``none`` and ``iterable``
747* Added ``*args`` and ``*kwargs`` pass-through parameters to
748 ``pybind11.get_include()`` function
Wenzel Jakobdd7ec342016-04-29 10:06:24 +0200749* Iterator improvements and fixes
750* Documentation on return value policies and opaque types improved
Wenzel Jakobbb79d7b2016-04-21 12:23:20 +0200751
Wenzel Jakobe70b2ab2016-04-30 19:58:33 +02007521.6 (April 30, 2016)
753----------------------
754* Skipped due to upload to PyPI gone wrong and inability to recover
755 (https://github.com/pypa/packaging-problems/issues/74)
756
Wenzel Jakobbb79d7b2016-04-21 12:23:20 +02007571.5 (April 21, 2016)
Wenzel Jakob2c5d5602016-04-11 18:46:11 +0200758----------------------
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200759* For polymorphic types, use RTTI to try to return the closest type registered with pybind11
Wenzel Jakobd7efa4f2016-04-13 13:45:09 +0200760* Pickling support for serializing and unserializing C++ instances to a byte stream in Python
Wenzel Jakobb2825952016-04-13 23:33:00 +0200761* Added a convenience routine ``make_iterator()`` which turns a range indicated
762 by a pair of C++ iterators into a iterable Python object
763* Added ``len()`` and a variadic ``make_tuple()`` function
Wenzel Jakobb2b44a92016-04-15 17:50:40 +0200764* Addressed a rare issue that could confuse the current virtual function
765 dispatcher and another that could lead to crashes in multi-threaded
766 applications
Wenzel Jakobb2825952016-04-13 23:33:00 +0200767* Added a ``get_include()`` function to the Python module that returns the path
768 of the directory containing the installed pybind11 header files
Wenzel Jakob1c329aa2016-04-13 02:37:36 +0200769* Documentation improvements: import issues, symbol visibility, pickling, limitations
Wenzel Jakobdbe43ff2016-04-21 12:21:14 +0200770* Added casting support for ``std::reference_wrapper<>``
Wenzel Jakob2c5d5602016-04-11 18:46:11 +0200771
Wenzel Jakob33c2a042016-04-07 09:06:49 +02007721.4 (April 7, 2016)
Wenzel Jakobd2385e82016-03-08 18:04:43 +0100773--------------------------
Wenzel Jakob81dfd2c2016-03-08 19:40:32 +0100774* Transparent type conversion for ``std::wstring`` and ``wchar_t``
Wenzel Jakob0e6ca592016-04-07 08:49:37 +0200775* Allow passing ``nullptr``-valued strings
Wenzel Jakob34116732016-04-06 17:55:41 +0200776* Transparent passing of ``void *`` pointers using capsules
Wenzel Jakob0e6ca592016-04-07 08:49:37 +0200777* Transparent support for returning values wrapped in ``std::unique_ptr<>``
Wenzel Jakob4e455dd2016-03-09 16:38:28 +0100778* Improved docstring generation for compatibility with Sphinx
Wenzel Jakob34116732016-04-06 17:55:41 +0200779* Nicer debug error message when default parameter construction fails
780* Support for "opaque" types that bypass the transparent conversion layer for STL containers
781* Redesigned type casting interface to avoid ambiguities that could occasionally cause compiler errors
Wenzel Jakob2c5d5602016-04-11 18:46:11 +0200782* Redesigned property implementation; fixes crashes due to an unfortunate default return value policy
Wenzel Jakob4e455dd2016-03-09 16:38:28 +0100783* Anaconda package generation support
Wenzel Jakobd2385e82016-03-08 18:04:43 +0100784
7851.3 (March 8, 2016)
Wenzel Jakob8ed28082016-02-07 17:32:37 +0100786--------------------------
Wenzel Jakobcf2b87a2016-02-22 17:32:44 +0100787
788* Added support for the Intel C++ compiler (v15+)
789* Added support for the STL unordered set/map data structures
Wenzel Jakobd2385e82016-03-08 18:04:43 +0100790* Added support for the STL linked list data structure
Wenzel Jakobcf2b87a2016-02-22 17:32:44 +0100791* NumPy-style broadcasting support in ``pybind11::vectorize``
Wenzel Jakob2c5d5602016-04-11 18:46:11 +0200792* pybind11 now displays more verbose error messages when ``arg::operator=()`` fails
Wenzel Jakobd2385e82016-03-08 18:04:43 +0100793* pybind11 internal data structures now live in a version-dependent namespace to avoid ABI issues
794* Many, many bugfixes involving corner cases and advanced usage
Wenzel Jakob8ed28082016-02-07 17:32:37 +0100795
7961.2 (February 7, 2016)
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100797--------------------------
Wenzel Jakob48548ea2016-01-17 22:36:44 +0100798
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100799* Optional: efficient generation of function signatures at compile time using C++14
Wenzel Jakob48548ea2016-01-17 22:36:44 +0100800* Switched to a simpler and more general way of dealing with function default
801 arguments. Unused keyword arguments in function calls are now detected and
802 cause errors as expected
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100803* New ``keep_alive`` call policy analogous to Boost.Python's ``with_custodian_and_ward``
Wenzel Jakob48548ea2016-01-17 22:36:44 +0100804* New ``pybind11::base<>`` attribute to indicate a subclass relationship
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100805* Improved interface for RAII type wrappers in ``pytypes.h``
806* Use RAII type wrappers consistently within pybind11 itself. This
807 fixes various potential refcount leaks when exceptions occur
Wenzel Jakob2c5d5602016-04-11 18:46:11 +0200808* Added new ``bytes`` RAII type wrapper (maps to ``string`` in Python 2.7)
Wenzel Jakob48548ea2016-01-17 22:36:44 +0100809* Made handle and related RAII classes const correct, using them more
810 consistently everywhere now
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100811* Got rid of the ugly ``__pybind11__`` attributes on the Python side---they are
812 now stored in a C++ hash table that is not visible in Python
813* Fixed refcount leaks involving NumPy arrays and bound functions
814* Vastly improved handling of shared/smart pointers
815* Removed an unnecessary copy operation in ``pybind11::vectorize``
816* Fixed naming clashes when both pybind11 and NumPy headers are included
817* Added conversions for additional exception types
Wenzel Jakob48548ea2016-01-17 22:36:44 +0100818* Documentation improvements (using multiple extension modules, smart pointers,
819 other minor clarifications)
Wenzel Jakob61587162016-01-18 22:38:52 +0100820* unified infrastructure for parsing variadic arguments in ``class_`` and cpp_function
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100821* Fixed license text (was: ZLIB, should have been: 3-clause BSD)
822* Python 3.2 compatibility
Wenzel Jakobcd4e6ae2016-01-29 11:48:40 +0100823* Fixed remaining issues when accessing types in another plugin module
824* Added enum comparison and casting methods
825* Improved SFINAE-based detection of whether types are copy-constructible
826* Eliminated many warnings about unused variables and the use of ``offsetof()``
Wenzel Jakob8ed28082016-02-07 17:32:37 +0100827* Support for ``std::array<>`` conversions
Wenzel Jakob1ae77fe2016-01-17 22:36:43 +0100828
8291.1 (December 7, 2015)
830--------------------------
831
832* Documentation improvements (GIL, wrapping functions, casting, fixed many typos)
833* Generalized conversion of integer types
834* Improved support for casting function objects
835* Improved support for ``std::shared_ptr<>`` conversions
836* Initial support for ``std::set<>`` conversions
837* Fixed type resolution issue for types defined in a separate plugin module
838* Cmake build system improvements
839* Factored out generic functionality to non-templated code (smaller code size)
840* Added a code size / compile time benchmark vs Boost.Python
841* Added an appveyor CI script
842
8431.0 (October 15, 2015)
844------------------------
845* Initial release