Skip to content

Commit

Permalink
Preparing to create tag 10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpihl committed Jan 23, 2025
1 parent f73c2a7 commit 1288fa2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ every change, see the Git log.

Latest
------
* tbd

10.1.0
------
* Patch: Fixed bug where assignment of a json object to a contained object would
cause a memory leak.
* Patch: Fixed bug where re-assignment via the ``operator[]`` would cause a memory
Expand Down
2 changes: 1 addition & 1 deletion src/bourne/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inline namespace STEINWURF_BOURNE_VERSION
{
std::string version()
{
return "10.0.1";
return "10.1.0";
}
}
}
2 changes: 1 addition & 1 deletion src/bourne/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace cpuid
{
/// Here we define the STEINWURF_BOURNE_VERSION this should be updated on each
/// release
#define STEINWURF_BOURNE_VERSION v10_0_1
#define STEINWURF_BOURNE_VERSION v10_1_0

inline namespace STEINWURF_BOURNE_VERSION
{
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import os
from waflib.Build import BuildContext

APPNAME = "bourne"
VERSION = "10.0.1"
VERSION = "10.1.0"


def configure(conf):
Expand Down

0 comments on commit 1288fa2

Please sign in to comment.