Skip to content

Commit

Permalink
C Version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benjeffery authored and mergify[bot] committed Jan 26, 2022
1 parent 6f95d00 commit 1a73c83
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion c/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@
[2.1.0] - 2022-01-25
--------------------

- Add flag KAS_BORROWS_ARRAY to put. When specified kastore will not copy
- Add flag ``KAS_BORROWS_ARRAY`` to put. When specified kastore will not copy
or free the array, which must persist for the life of the store.
(:user:`benjeffery`, :pr:`181`, :issue:`180`).

- Add flag ``KAS_GET_TAKES_OWNERSHIP`` to open. If specified all ``get``
operations will transfer ownership of the array to the caller.
``kastore`` will not ``free`` the array memory and this is the
responsibility of the caller.
(:user:`benjeffery`, :pr:`179`, :issue:`176`)

--------------------
[2.0.1] - 2021-11-26
--------------------
Expand Down
2 changes: 1 addition & 1 deletion c/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2
2.1.0
4 changes: 2 additions & 2 deletions c/kastore.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ sizes and types of externally visible structs.
The library minor version. Incremented when non-breaking backward-compatible changes
to the API or ABI are introduced, i.e., the addition of a new function.
*/
#define KAS_VERSION_MINOR 0
#define KAS_VERSION_MINOR 1
/**
The library patch version. Incremented when any changes not relevant to the
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
*/
#define KAS_VERSION_PATCH 2
#define KAS_VERSION_PATCH 0
/** @} */

#define KAS_HEADER_SIZE 64
Expand Down

0 comments on commit 1a73c83

Please sign in to comment.