Skip to content

Commit

Permalink
[doc][release] Document 1.6.0 changes
Browse files Browse the repository at this point in the history
[doc][release] Document 1.6.0 changes
  • Loading branch information
thoni56 committed Jul 4, 2022
1 parent 07ae766 commit 2df9cc8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ enable_testing()
# global needed variables
set(APPLICATION_NAME ${PROJECT_NAME})
set(APPLICATION_VERSION_MAJOR "1")
set(APPLICATION_VERSION_MINOR "5")
set(APPLICATION_VERSION_PATCH "1")
set(APPLICATION_VERSION_MINOR "6")
set(APPLICATION_VERSION_PATCH "0")
# If you change here, also change in include/cgreen/cgreen.h
# unless you write some code that automatically updates that...

Expand Down
4 changes: 4 additions & 0 deletions doc/cgreen-guide-en.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3167,6 +3167,10 @@ You can use them to conditionally check for Cgreen features introduced as declar
Since 1.2.0 Cgreen has featured a public version variable in the loaded library, `cgreen_library_version`.
This is mainly used by the `cgreen-runner` to present version of the loaded library, but it can also be used to check for availability of features in the same way.

=== 1.6.0

- Reverted use of `libbfd` introduced in 1.5.0 due to portability issues and Debian deeming it to be a serious bug due to `libbfd` not having a stable interface

=== 1.5.1

- Fixed a problem with `ends_with_string()` which randomly crashed
Expand Down
6 changes: 3 additions & 3 deletions include/cgreen/cgreen.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#include <cgreen/runner.h>
#include <cgreen/boxed_double.h>

#define CGREEN_VERSION "1.5.1"
#define CGREEN_VERSION "1.6.0"
#define CGREEN_VERSION_MAJOR 1
#define CGREEN_VERSION_MINOR 5
#define CGREEN_VERSION_PATCH 1
#define CGREEN_VERSION_MINOR 6
#define CGREEN_VERSION_PATCH 0

extern char *cgreen_library_version;
extern char *cgreen_library_revision;

0 comments on commit 2df9cc8

Please sign in to comment.