Skip to content

Commit

Permalink
[misc] prepare 0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
h-2 committed Apr 11, 2023
1 parent 79ead16 commit 0b4d63e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@
This changelog contains a top-level entry for each release with sections on new features, API changes and notable
bug-fixes (not all bug-fixes will be listed).

# 0.7.1

Summary: fix some ranges by using our own tuple.

## Added

* `bio::meta::tuple` which behaves like C++23's `std::tuple`.

## Fixed

* `bio::views::zip` uses `bio::meta::tuple` and now also models `std::ranges::output_range`.
* `bio::views::pairwise_combine` uses `bio::meta::tuple` and now also models `std::ranges::output_range`.
* `bio::ranges::dictionary` uses `bio::meta::tuple`. Now `bio::ranges::dictionary<> const` works correctly.

## API

* This release is not yet API-stable.
* This release is *mostly* backwards compatible with 0.7.0 (see changes above).


# 0.7.0

Summary: we now support LLVM/clang as a compiler; CIGARs have been much improved and there is a new container.
Expand Down
4 changes: 2 additions & 2 deletions include/bio/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ static_assert(__cplusplus >= 201709, "BioCpp-Core requires C++20, make sure that
//!\brief The major version as MACRO.
#define BIOCPP_CORE_VERSION_MAJOR 0
//!\brief The minor version as MACRO.
#define BIOCPP_CORE_VERSION_MINOR 8
#define BIOCPP_CORE_VERSION_MINOR 7
//!\brief The patch version as MACRO.
#define BIOCPP_CORE_VERSION_PATCH 0
#define BIOCPP_CORE_VERSION_PATCH 1

//!\brief The full version as MACRO (number).
#define BIOCPP_CORE_VERSION \
Expand Down

0 comments on commit 0b4d63e

Please sign in to comment.