Skip to content

Commit 9888b96

Browse files
committed
Finish release 0.6-2
1 parent c27b59c commit 9888b96

3 files changed

Lines changed: 24 additions & 4 deletions

File tree

CHANGELOG.MD

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(FOONATHAN_MEMORY)
99

1010
set(FOONATHAN_MEMORY_VERSION_MAJOR 0 CACHE STRING "major version of memory" FORCE)
1111
set(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)
1313
set(FOONATHAN_MEMORY_VERSION "${FOONATHAN_MEMORY_VERSION_MAJOR}.${FOONATHAN_MEMORY_VERSION_MINOR}.${FOONATHAN_MEMORY_VERSION_PATCH}"
1414
CACHE STRING "version of memory" FORCE)
1515

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,15 @@ In particular thanks to the individual supporters:
225225

226226
And 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

0 commit comments

Comments
 (0)