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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Fixed


## [1.8.0] - 2024-01-13
## [1.8.1] - 2025-07-15

### Fixed

- Fix buffer overrun in `get_bool()`
- Fix test that checks that protozero also works with `std::string_view`


## [1.8.0] - 2025-01-13

### Changed

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR)

#-----------------------------------------------------------------------------

project(protozero VERSION 1.8.0 LANGUAGES CXX C)
project(protozero VERSION 1.8.1 LANGUAGES CXX C)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

Expand Down
4 changes: 2 additions & 2 deletions include/protozero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ documentation.
#define PROTOZERO_VERSION_MINOR 8

/// The patch number
#define PROTOZERO_VERSION_PATCH 0
#define PROTOZERO_VERSION_PATCH 1

/// The complete version number
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)

/// Version number as string
#define PROTOZERO_VERSION_STRING "1.8.0"
#define PROTOZERO_VERSION_STRING "1.8.1"

#endif // PROTOZERO_VERSION_HPP