File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Upcoming Changes
2+
3+ # 0.6-2
4+
5+ Various bug fixes, compiler warning workarounds and CMake improvements accumulated over past two years.
6+ Most notable changes:
7+
8+ * cross compilation works now
9+ * ` fallback_allocator ` is default constructible if stateless
10+ * add ` unique_base_ptr ` to support a unique ptr to a base class
11+ * add ` allocate_unique ` overloads that take a custom mutex
12+ * allocator deleters are default constructible
13+
14+ ---
15+
116# 0.6-1
217
318* fix CMake configuration error
419* fix double free error in ` segregator `
520* add ` static_assert() ` when default constructing a stateful ` std_allocator `
621* fix various compiler warnings
722
8- ---
9-
1023# 0.6
1124
1225## Tool
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ project(FOONATHAN_MEMORY)
99
1010set (FOONATHAN_MEMORY_VERSION_MAJOR 0 CACHE STRING "major version of memory" FORCE )
1111set (FOONATHAN_MEMORY_VERSION_MINOR 6 CACHE STRING "minor version of memory" FORCE )
12- set (FOONATHAN_MEMORY_VERSION_PATCH 1 CACHE STRING "patch version of memory" FORCE )
12+ set (FOONATHAN_MEMORY_VERSION_PATCH 2 CACHE STRING "patch version of memory" FORCE )
1313set (FOONATHAN_MEMORY_VERSION "${FOONATHAN_MEMORY_VERSION_MAJOR} .${FOONATHAN_MEMORY_VERSION_MINOR} .${FOONATHAN_MEMORY_VERSION_PATCH} "
1414 CACHE STRING "version of memory" FORCE )
1515
Original file line number Diff line number Diff line change @@ -225,8 +225,15 @@ In particular thanks to the individual supporters:
225225
226226And big thanks to the contributors as well:
227227
228- * @nicolastagliani
229228* @bfierz
229+ * @nicolastagliani
230+ * @cho3
231+ * @myd7349
232+ * @moazzamak
233+ * @maksqwe
234+ * @kaidokert
235+ * @gabyx
236+ * @MiguelCompany
230237* @Manu343726
231238
232239[ EASTL ] : http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2271.html
You can’t perform that action at this time.
0 commit comments