Skip to content

Commit 3006572

Browse files
committed
Bump version to 25.7.0
[why] To keep in sync with DOOCS release 25.7.0. Signed-off-by: Lars Froehlich <lars.froehlich@desy.de>
1 parent 29d32aa commit 3006572

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

data/doxygen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ namespace gul17 {
146146
*
147147
* \section changelog_gul17 GUL17 Versions
148148
*
149-
* \subsection V25_X_X UNRELEASED
149+
* \subsection V25_7_0 Version 25.7.0
150150
*
151151
* - Add gul17::null_safe_string(const char*) and
152152
* gul17::null_safe_string_view(const char*). The new functions construct a string or

include/gul17/OverloadSet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace gul17 {
5151
* Addison-Wesley, 2023.
5252
*
5353
* \since GUL14 version 2.9.2; dropped in GUL17 25.3.0; reintroduced in GUL17 version
54-
* UNRELEASED
54+
* 25.7.0
5555
*/
5656
template<typename... Fcts>
5757
struct OverloadSet : Fcts ...

include/gul17/join_split.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ join(const StringContainer& parts, std::string_view glue)
392392
* iterator type and returns a string type. This string type must
393393
* support concatenation with std::string::operator+=().
394394
*
395-
* \since GUL version UNRELEASED
395+
* \since version 25.7.0
396396
*/
397397
template <typename Iterator, typename ConversionFct>
398398
inline std::string
@@ -448,7 +448,7 @@ join(Iterator begin, Iterator end, std::string_view glue, ConversionFct to_strin
448448
* iterator type and returns a string type. This string type must
449449
* support concatenation with std::string::operator+=().
450450
*
451-
* \since GUL version UNRELEASED
451+
* \since version 25.7.0
452452
*/
453453
template <typename Container, typename ConversionFct>
454454
inline std::string

include/gul17/string_util.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ hex_string(const Container& container, std::string_view separator = "")
239239
*
240240
* \see safe_string(), null_safe_string_view()
241241
*
242-
* \since GUL version UNRELEASED
242+
* \since version 25.7.0
243243
*/
244244
GUL_EXPORT
245245
std::string null_safe_string(const char* char_ptr);
@@ -260,7 +260,7 @@ std::string null_safe_string(const char* char_ptr);
260260
*
261261
* \see safe_string_view(), null_safe_string()
262262
*
263-
* \since GUL version UNRELEASED
263+
* \since version 25.7.0
264264
*/
265265
GUL_EXPORT
266266
std::string_view null_safe_string_view(const char* char_ptr);

0 commit comments

Comments
 (0)