Skip to content

Commit

Permalink
updated changelog and version.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlchristian Eckert committed Jun 2, 2014
1 parent 7e8fbbc commit d7ebe70
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 10 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Change Log / Release Log for ScatterAlloc
Change Log / Release Log for mallocMC
================================================================

2.0.0crp
-------------
**Date:** 2014-06-02

This release introduces mallocMC, which contains the previous algorithm and
much code from ScatterAlloc 1.0.2crp.
We closed all issues documented in
[Milestone *Get Lib ready for PIConGPU*](https://github.com/ComputationalRadiationPhysics/mallocMC/issues?milestone=2&state=closed)

### Changes to ScatterAlloc 1.0.2crp

**Features**
- completely split into policies #17
- configuration through structs instead of macro #17
- function `getAvailableSlots()` #5
- selectable data alignment #14
- function `finalizeHeap()` #11

**Bug fixes:**
- build warning for cmake #33

**Misc:**
- verification code and examples #35
- install routines #4
- See the full changes at https://github.com/ComputationalRadiationPhysics/mallocMC/compare/1.0.2crp...fa80d03e5f168cf35c6d18857830a1e0883f88c6


1.0.2crp
-------------
**Date:** 2014-01-07
Expand Down
17 changes: 8 additions & 9 deletions src/include/mallocMC/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@

#pragma once

/** the ScatterAlloc version: major API changes should be reflected here */
#define SCATTERALLOC_VERSION_MAJOR 1
#define SCATTERALLOC_VERSION_MINOR 0
#define SCATTERALLOC_VERSION_PATCH 2

/** the ScatterAlloc flavor is used to differenciate the releases
* of the Computational Radiation Physics group (crp) from the original
* release of the TU Graz group (mvp)
/** the mallocMC version: major API changes should be reflected here */
#define MALLOCMC_VERSION_MAJOR 2
#define MALLOCMC_VERSION_MINOR 0
#define MALLOCMC_VERSION_PATCH 0

/** the mallocMC flavor is used to differenciate the releases of the
* Computational Radiation Physics group (crp) from other releases
* This should be useful to avoid versioning conflicts */
#define SCATTERALLOC_FLAVOR "crp"
#define MALLOCMC_FLAVOR "crp"

0 comments on commit d7ebe70

Please sign in to comment.