From 28e1c9b5104aebbedc74e10003f3082af4808662 Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Thu, 3 Oct 2024 13:38:23 -0600 Subject: [PATCH] Updating version in develop --- CMakeLists.txt | 2 +- ReleaseNotes.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 62850e3..aaaad2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ if( DEFINED PROJECT_NAME ) endif() project( tools - VERSION 0.4.0 + VERSION 0.5.0 LANGUAGES CXX ) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index ac08aa7..216954e 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,6 +1,8 @@ # Release Notes—tools Given here are some release notes for tools. +## [tools v0.5.0](https://github.com/njoy/tools/pull/xx) + ## [tools v0.4.0](https://github.com/njoy/tools/pull/44) New features: - added a partial implementation of the C++23 ranges standard: chunk_view, chunk_by_view, stride_view and repeat_view (LLVM implementations for these views were used as models for our C++17 based implementations)