Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.8.0 #128

Merged
merged 2 commits into from
Jan 13, 2025
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
1 change: 0 additions & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: clang-tidy

#on: workflow_dispatch
on: [ push, pull_request ]

jobs:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Changed

### Fixed


## [1.8.0] - 2024-01-13

### Changed

- Switched to C++14 as minimum requirement. Modernised the code accordingly.
- Only the tests need the Protobuf library when building.
- Improve compatibility with various STL flavors.
Expand Down Expand Up @@ -410,7 +417,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Make pbf reader and writer code endianess-aware.


[unreleased]: https://github.com/osmcode/libosmium/compare/v1.7.1...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.8.0...HEAD
[1.8.0]: https://github.com/osmcode/libosmium/compare/v1.7.1...v1.8.0
[1.7.1]: https://github.com/osmcode/libosmium/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0
[1.6.8]: https://github.com/osmcode/libosmium/compare/v1.6.7...v1.6.8
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.7.1 LANGUAGES CXX C)
project(protozero VERSION 1.8.0 LANGUAGES CXX C)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

To release a new protozero version:

- Make sure all tests are passing locally, on travis and on appveyor
- Make sure all tests are passing locally, on Github and on Appveyor
- Make sure "make doc" builds
- Update version number in
- include/protozero/version.hpp (two places)
Expand Down
6 changes: 3 additions & 3 deletions include/protozero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ documentation.
#define PROTOZERO_VERSION_MAJOR 1

/// The minor version number
#define PROTOZERO_VERSION_MINOR 7
#define PROTOZERO_VERSION_MINOR 8

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

/// 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.7.1"
#define PROTOZERO_VERSION_STRING "1.8.0"

#endif // PROTOZERO_VERSION_HPP
Loading