From 0c1b1423eba624ad04b01d9bdf1ed43bdf47097f Mon Sep 17 00:00:00 2001 From: Brian Neradt Date: Wed, 15 Jan 2025 14:19:54 -0600 Subject: [PATCH] libswoc version update: 1.5.13 (#11958) We cut a release of trafficserver-libswoc that has our latest ATS changes to lib/swoc. That release is 1.5.13. This updates our local swoc_version.h to reflect this new release. --- lib/swoc/include/swoc/swoc_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/swoc/include/swoc/swoc_version.h b/lib/swoc/include/swoc/swoc_version.h index e346be1ebe7..f9ffbedd8be 100644 --- a/lib/swoc/include/swoc/swoc_version.h +++ b/lib/swoc/include/swoc/swoc_version.h @@ -23,11 +23,11 @@ #pragma once #if !defined(SWOC_VERSION_NS) -#define SWOC_VERSION_NS _1_5_12 +#define SWOC_VERSION_NS _1_5_13 #endif namespace swoc { inline namespace SWOC_VERSION_NS { static constexpr unsigned MAJOR_VERSION = 1; static constexpr unsigned MINOR_VERSION = 5; -static constexpr unsigned POINT_VERSION = 12; +static constexpr unsigned POINT_VERSION = 13; }} // namespace swoc::SWOC_VERSION_NS