1. 06f56ee opaque type redesign by Wenzel Jakob · 8 years ago
  2. 6ca6e82 fix various iterator issues (fixes #181) by Wenzel Jakob · 8 years ago
  3. a01977e pytypes noexcept annotations by Wenzel Jakob · 8 years ago
  4. e84f557 documentation improvements by Wenzel Jakob · 8 years ago
  5. 19dfc50 is_move_constructible simplification by Wenzel Jakob · 8 years ago
  6. f7b5874 new move value policy by Wenzel Jakob · 8 years ago
  7. fbafdea a few more GIL-related compatibility fixes by Wenzel Jakob · 8 years ago
  8. 17b10d7 functional.h: acquire GIL before calling Python function by Wenzel Jakob · 8 years ago
  9. 2f6662e Python 2.7.x fixes for new gil_scoped_release by Wenzel Jakob · 8 years ago
  10. 084ca0e compilation fixes by Wenzel Jakob · 8 years ago
  11. 39e97e6 significant redesign of GIL state handling by Wenzel Jakob · 8 years ago
  12. 18fb3e3 added a pybind11::none class by Wenzel Jakob · 8 years ago
  13. 9b880ba keep_alive: don't fail when there is no patient by Wenzel Jakob · 8 years ago
  14. 7d0162a minor cleanups by Wenzel Jakob · 8 years ago
  15. 7ca2755 new type wrapper for iterable objects by Wenzel Jakob · 8 years ago
  16. 54b6fdd starting work on the v1.6 release by Wenzel Jakob · 8 years ago
  17. dbe43ff completed implicit type casters for reference_wrapper by Wenzel Jakob · 8 years ago
  18. f54ded7 added caster for std::reference_wrapper (fixes #171) by Wenzel Jakob · 8 years ago
  19. e65e587 slight generalization of cast_op_type by Wenzel Jakob · 8 years ago
  20. 8cb6cb3 minor cleanups in common.h; updated author info and copyright year by Wenzel Jakob · 8 years ago
  21. bf0c7dc convenience overload for make_iterator() by Wenzel Jakob · 8 years ago
  22. 1dc940d quenched -pendantic warnings (closes #167) by Wenzel Jakob · 8 years ago
  23. b2b44a9 fix for virtual dispatch on newly created threads by Wenzel Jakob · 8 years ago
  24. 8bd31c7 New automatic return value policy for cat() and make_tuple(), fixed an ambiguity issue by Wenzel Jakob · 8 years ago
  25. b282595 convenience wrapper for constructing iterators (fixes #142) by Wenzel Jakob · 8 years ago
  26. 5a6aa49 Added len() function by Wenzel Jakob · 8 years ago
  27. d7efa4f return best representation of polymorphic types (fixes #105) by Wenzel Jakob · 8 years ago
  28. 1c329aa pickling support (fixes #144) by Wenzel Jakob · 8 years ago
  29. 505466f added variadic make_tuple() function by Wenzel Jakob · 8 years ago
  30. f5c154a address issue with virtual function dispatch (fixes #159) by Wenzel Jakob · 8 years ago
  31. 95dc069 starting work on version 1.5 by Wenzel Jakob · 8 years ago
  32. 9f0dfce returning unique pointers is now allowed by Wenzel Jakob · 8 years ago
  33. a3ee1a4 improved pair type caster (fixes #155) by Wenzel Jakob · 8 years ago
  34. 912feec improve debug error message when default parameter construction fails by Wenzel Jakob · 8 years ago
  35. b90e68d another corner case (fixes #151) by Wenzel Jakob · 8 years ago
  36. 08927e9 tabs->spaces by Wenzel Jakob · 8 years ago
  37. 9883ec0 allow nullptr string values (closes #138) by Wenzel Jakob · 8 years ago
  38. 7393343 removed unnecessary code by Wenzel Jakob · 8 years ago
  39. d3349af modularized logic in preceding change, fixed issue with char (fixes #150) by Wenzel Jakob · 8 years ago
  40. 0772967 allow nullptr when passing void* values by Wenzel Jakob · 8 years ago
  41. de1bca8 added feature to pass void* pointers by popular demand by Wenzel Jakob · 8 years ago
  42. 12cf543 address compilation issue in MSVC by Wenzel Jakob · 8 years ago
  43. 048373c explicitly route type casting operations to desired casting operator (fixes #147) by Wenzel Jakob · 8 years ago
  44. 0b48958 improve default parameters for properties by Wenzel Jakob · 8 years ago
  45. 84ec78f minor redesign/generalization of def_property mechanism by Wenzel Jakob · 8 years ago
  46. eda978e support for opaque types by Wenzel Jakob · 8 years ago
  47. 1b52246 Better testing for callable python functions by Ben Pritchard · 8 years ago
  48. 17cdb06 fix severe regression involving character arrays (fixes #137) by Wenzel Jakob · 8 years ago
  49. eb5277b Merge pull request #119 from SylvainCorlay/docstring by Wenzel Jakob · 8 years ago
  50. 4c7bf9b Add return type by Sylvain Corlay · 8 years ago
  51. 0e04fdf Add generic signature for overloads by Sylvain Corlay · 8 years ago
  52. 13b22bf Signature formatting for sphinx by Sylvain Corlay · 8 years ago
  53. 81dfd2c Working type casters for wide strings and wide characters by Wenzel Jakob · 8 years ago
  54. 504f755 starting to work on next version by Wenzel Jakob · 8 years ago
  55. 309a85b support std::shared_ptr<const X> and types that indirectly derive from std::enable_shared_from_this by Wenzel Jakob · 8 years ago
  56. 77586fd add version suffix to internal pybind11 data structures to avoid conflicts with future versions by Wenzel Jakob · 8 years ago
  57. bce8a4b force explicit cast (fixes #130) by Wenzel Jakob · 8 years ago
  58. f4902ec Use emplace for casting to map by Ben Pritchard · 8 years ago
  59. 52f4c3a handle nullptr arguments with custom holder types (fixes #124) by Wenzel Jakob · 8 years ago
  60. a88334f add wchar_t caster by hulucc · 8 years ago
  61. c8f68b3 add wstring caster by hulucc · 8 years ago
  62. 218b6ce Revert "trim docstrings (closes #112)" by Wenzel Jakob · 8 years ago
  63. 25dd478 Python overloading of virtual functions defined in class template by Johan Mabille · 8 years ago
  64. b3ef54a trim docstrings (closes #112) by Wenzel Jakob · 8 years ago
  65. 4a50fa5 Address issue with handle::cast<bool>(), quench warning in example 12 (fixes #110) by Wenzel Jakob · 8 years ago
  66. 347e6ea allow a broader set of types in STL containers by Wenzel Jakob · 8 years ago
  67. 82ba330 stl.h: transparent conversion of STL linked lists by Wenzel Jakob · 8 years ago
  68. a3861b5 type_caster_generic::load(): accept Py_None as input by Wenzel Jakob · 8 years ago
  69. d6e4cef minor formatting changes, removed missing header files referenced in setup.py by Wenzel Jakob · 8 years ago
  70. 5e31d89 Merge pull request #102 from jmabille/vectorize by Wenzel Jakob · 8 years ago
  71. 1dc960c NumPy-style broadcasting support in pybind11::vectorize by Johan Mabille · 8 years ago
  72. 33f3430 Add intel warning push/pop by Ben Pritchard · 8 years ago
  73. 2de6e1d Remove some unnecessary semicolons (compilers warn on higher levels) by Ben Pritchard · 8 years ago
  74. 70ee47d Add Intel to cmake file. Supress Intel inline/noinline warning by Ben Pritchard · 8 years ago
  75. 0b6cff3 Fixes for compilation/segfault problems with Intel (issue 94) by Ben Pritchard · 8 years ago
  76. f8584b6 quench some warnings in operators.h by Wenzel Jakob · 8 years ago
  77. 0880294 support unordered set/map data structures (fixes #100) by Wenzel Jakob · 8 years ago
  78. 4fee179 better debug info when arg::operator=() fails by Wenzel Jakob · 8 years ago
  79. 4f8902a starting development cycle for v1.3 by Wenzel Jakob · 8 years ago
  80. 8ed2808 pybind11, version 1.2 by Wenzel Jakob · 8 years ago
  81. 10c74c6 transparent std::array conversion (fixes #97) by Wenzel Jakob · 8 years ago
  82. 1f7a809 support for string default arguments specified as static arrays by Wenzel Jakob · 8 years ago
  83. e206564 removed a redundant tag by Wenzel Jakob · 8 years ago
  84. a650179 set __module__ attribute of functions (fixes #95) by Wenzel Jakob · 8 years ago
  85. b6cf75d address issue with std::type_info across module boundaries (fixes #86) by Wenzel Jakob · 8 years ago
  86. 2547ca4 deal with Python versions compiled without thread support (fixes #81) by Felipe Lema · 8 years ago
  87. 15f6a00 enum comparison and conversion operations (closes #80) by Wenzel Jakob · 8 years ago
  88. fa92f67 Merge pull request #76 from ax3l/fix-unusedVar by Wenzel Jakob · 8 years ago
  89. 30214ad Fix #75 <complex> may define macro I by Axel Huebl · 8 years ago
  90. 2dd5e3b Close #69 Unused Var: Warning by Axel Huebl · 8 years ago
  91. 80a0674 hopefully final(?) adjustment to detail::is_copy_constructible (fixes #70) by Wenzel Jakob · 8 years ago
  92. b670b77 minor adjustment to detail::is_copy_constructible (fixes #70) by Wenzel Jakob · 8 years ago
  93. 88d1d04 another attempt to fix the offsetof warnings by Wenzel Jakob · 8 years ago
  94. 7cd569c Fix Compile Error: str Naming by Axel Huebl · 9 years ago
  95. 260bc58 improved SFINAE in type_caster_generic (closes #70) by Wenzel Jakob · 9 years ago
  96. 92b2f45 fix regression in stl.h by Wenzel Jakob · 9 years ago
  97. 2983d5e quench warnings (closes #69) by Wenzel Jakob · 9 years ago
  98. 48548ea general cleanup of the codebase by Wenzel Jakob · 9 years ago
  99. 1ae77fe added a changelog file and version defines by Wenzel Jakob · 9 years ago
  100. 53b2654 python 3.2 compatiblity (closes #56) by Wenzel Jakob · 9 years ago