Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ The following API changes should be documented as such:
If possible, provide tooling that performs the changes, e.g. a shell-script.
-->

# 3.4.2

## Notable Bug-fixes

#### Misc
* Resolved warnings and errors arising with Clang 22 ([\#3404](https://github.com/seqan/seqan3/pull/3404)).
* Resolved a rare data race in the BGZF stream ([\#3406](https://github.com/seqan/seqan3/pull/3406)).

# 3.4.1

## Notable Bug-fixes
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//!\brief The patch version as MACRO.
#define SEQAN3_VERSION_PATCH 2
//!\brief The release candidate number. 0 means stable release, >= 1 means release candidate.
#define SEQAN3_RELEASE_CANDIDATE 1
#define SEQAN3_RELEASE_CANDIDATE 0

//!\brief The full version as MACRO (number).
#define SEQAN3_VERSION (SEQAN3_VERSION_MAJOR * 10000 + SEQAN3_VERSION_MINOR * 100 + SEQAN3_VERSION_PATCH)
Expand Down
Loading