This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-libswoc.git
The following commit(s) were added to refs/heads/master by this push:
new 1423c68 Prepare for the 1.5.14 release
1423c68 is described below
commit 1423c687db24d44d1c2416c39c7b0ec3312d24b0
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Mar 12 22:00:50 2025 +0000
Prepare for the 1.5.14 release
Update the swoc version to 1.5.14 from 1.5.13 in preparation for the
1.5.14 release.
---
code/CMakeLists.txt | 2 +-
code/include/swoc/swoc_version.h | 4 ++--
code/libswoc.part | 2 +-
doc/Doxyfile | 2 +-
doc/code/TextView.en.rst | 4 ++--
doc/code/ip_networking.en.rst | 2 +-
doc/conf.py | 2 +-
7 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt
index 3e91a2d..3d45873 100644
--- a/code/CMakeLists.txt
+++ b/code/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.11)
project(Lib-SWOC CXX)
-set(LIBSWOC_VERSION "1.5.13")
+set(LIBSWOC_VERSION "1.5.14")
set(CMAKE_CXX_STANDARD 17)
cmake_policy(SET CMP0087 NEW)
# override "lib64" to be "lib" unless the user explicitly sets it.
diff --git a/code/include/swoc/swoc_version.h b/code/include/swoc/swoc_version.h
index f9ffbed..e9890d2 100644
--- a/code/include/swoc/swoc_version.h
+++ b/code/include/swoc/swoc_version.h
@@ -23,11 +23,11 @@
#pragma once
#if !defined(SWOC_VERSION_NS)
-#define SWOC_VERSION_NS _1_5_13
+#define SWOC_VERSION_NS _1_5_14
#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 = 13;
+static constexpr unsigned POINT_VERSION = 14;
}} // namespace swoc::SWOC_VERSION_NS
diff --git a/code/libswoc.part b/code/libswoc.part
index 6dca03c..7afeb65 100644
--- a/code/libswoc.part
+++ b/code/libswoc.part
@@ -1,6 +1,6 @@
Import("*")
PartName("libswoc")
-PartVersion("1.5.13")
+PartVersion("1.5.14")
src_files = [
"src/ArenaWriter.cc",
diff --git a/doc/Doxyfile b/doc/Doxyfile
index 189de41..a72816f 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = "LibSWOC++"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = "1.5.13"
+PROJECT_NUMBER = "1.5.14"
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/doc/code/TextView.en.rst b/doc/code/TextView.en.rst
index 962b7b1..2af2634 100644
--- a/doc/code/TextView.en.rst
+++ b/doc/code/TextView.en.rst
@@ -366,7 +366,7 @@ for values that are boolean.
.. sidebar:: Verification
- `Test code for example
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.13/unit_tests/ex_TextView.cc#L73>`__.
+ `Test code for example
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.14/unit_tests/ex_TextView.cc#L73>`__.
The basic list processing is the same as the previous example, extracting each
comma separated
element. The resulting element is treated as a "list" with ``=`` as the
separator. Note if there is
@@ -418,7 +418,7 @@ do not, so a flag to strip quotes from the resulting
elements is needed. The fin
.. sidebar:: Verification
- `Test code for example
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.13/unit_tests/ex_TextView.cc#L90>`__.
+ `Test code for example
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.14/unit_tests/ex_TextView.cc#L90>`__.
This takes a :code:`TextView&` which is the source view which will be updated
as tokens are removed
(therefore the caller must do the empty view check). The other arguments are
the separator character
diff --git a/doc/code/ip_networking.en.rst b/doc/code/ip_networking.en.rst
index 2627fd6..d6a7988 100644
--- a/doc/code/ip_networking.en.rst
+++ b/doc/code/ip_networking.en.rst
@@ -265,7 +265,7 @@ Blending Bitsets
Some details are omitted for brevity and because they aren't directly
relevant. The full
implementation, which is run as a unit test to verify its correctness,
- `is available here
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.13/unit_tests/ex_ipspace_properties.cc>`__.
+ `is available here
<https://github.com/SolidWallOfCode/libswoc/blob/1.5.14/unit_tests/ex_ipspace_properties.cc>`__.
You can compile and step through the code to see how it works in more
detail, or experiment
with changing some of the example data.
diff --git a/doc/conf.py b/doc/conf.py
index 6047867..667b60a 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -79,7 +79,7 @@ project = u'Solid Wall Of C++'
copyright = u'{}, [email protected]'.format(date.today().year)
# The full version, including alpha/beta/rc tags.
-release = "1.5.13"
+release = "1.5.14"
# The short X.Y version.
version = '.'.join(release.split('.', 2)[:2])