This is an automated email from the ASF dual-hosted git repository. bneradt pushed a commit to branch dev-1-2-12 in repository https://gitbox.apache.org/repos/asf/trafficserver-libswoc.git
commit 43294ea5626faf11be1a21f8cda23df0002c3c3b Author: Alan M. Carroll <[email protected]> AuthorDate: Mon Oct 19 18:56:01 2020 -0500 Update to 1.2.12. --- code/CMakeLists.txt | 2 +- code/include/swoc/swoc_version.h | 4 ++-- code/libswoc.part | 2 +- doc/Doxyfile | 2 +- doc/code/IPSpace.en.rst | 2 +- doc/code/TextView.en.rst | 6 +++--- doc/conf.py | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt index 74340f6..12cd5be 100644 --- a/code/CMakeLists.txt +++ b/code/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12) project(Lib-SWOC CXX) -set(LIBSWOC_VERSION "1.2.11") +set(LIBSWOC_VERSION "1.2.12") set(CMAKE_CXX_STANDARD 17) include(GNUInstallDirs) diff --git a/code/include/swoc/swoc_version.h b/code/include/swoc/swoc_version.h index 4523e33..d59a222 100644 --- a/code/include/swoc/swoc_version.h +++ b/code/include/swoc/swoc_version.h @@ -22,11 +22,11 @@ #pragma once #if !defined(SWOC_VERSION_NS) -# define SWOC_VERSION_NS _1_2_11 +# define SWOC_VERSION_NS _1_2_12 #endif namespace swoc { inline namespace SWOC_VERSION_NS { static constexpr unsigned MAJOR_VERSION = 1; static constexpr unsigned MINOR_VERSION = 2; -static constexpr unsigned POINT_VERSION = 11; +static constexpr unsigned POINT_VERSION = 12; }} // namespace SWOC_VERSION_NS diff --git a/code/libswoc.part b/code/libswoc.part index b6af1d0..cef4283 100644 --- a/code/libswoc.part +++ b/code/libswoc.part @@ -1,6 +1,6 @@ Import("*") PartName("libswoc") -PartVersion("1.2.11") +PartVersion("1.2.12") src_files = [ "src/ArenaWriter.cc", diff --git a/doc/Doxyfile b/doc/Doxyfile index c0e44c7..858c6cf 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.2.11" +PROJECT_NUMBER = "1.2.12" # 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/IPSpace.en.rst b/doc/code/IPSpace.en.rst index 3211c0f..a2dfed9 100644 --- a/doc/code/IPSpace.en.rst +++ b/doc/code/IPSpace.en.rst @@ -172,7 +172,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.2.11/unit_tests/ex_ipspace_properties.cc>`__. + `is available here <https://github.com/SolidWallOfCode/libswoc/blob/1.2.12/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/code/TextView.en.rst b/doc/code/TextView.en.rst index 71f4060..7681f1d 100644 --- a/doc/code/TextView.en.rst +++ b/doc/code/TextView.en.rst @@ -278,7 +278,7 @@ separated by commas. .. sidebar:: Verification - `Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.2.11/unit_tests/ex_TextView.cc#L67>`__. + `Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.2.12/unit_tests/ex_TextView.cc#L67>`__. If :arg:`value` was :literal:`bob ,dave, sam` then :arg:`token` would be successively :literal:`bob`, :literal:`dave`, :literal:`sam`. After :literal:`sam` was extracted :arg:`value` @@ -300,7 +300,7 @@ for values that are boolean. .. sidebar:: Verification - `Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.2.11/unit_tests/ex_TextView.cc#L74>`__. + `Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.2.12/unit_tests/ex_TextView.cc#L74>`__. The basic list processing is the same as the previous example, with each element being treated as a "list" with ``=`` as the separator. Note if there is no ``=`` character then all of the list @@ -351,7 +351,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.2.11/unit_tests/ex_TextView.cc#L90>`__. + `Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.2.12/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/conf.py b/doc/conf.py index cf2ab10..666ab41 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -80,7 +80,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.2.11" +release = "1.2.12" # The short X.Y version. version = '.'.join(release.split('.', 2)[:2])
