Skip to content

Commit 504c0bd

Browse files
Update to 1.4.12.
1 parent 5c64141 commit 504c0bd

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Diff for: code/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.11)
22

33
project(Lib-SWOC CXX)
4-
set(LIBSWOC_VERSION "1.4.11")
4+
set(LIBSWOC_VERSION "1.4.12")
55
set(CMAKE_CXX_STANDARD 17)
66
cmake_policy(SET CMP0087 NEW)
77
# override "lib64" to be "lib" unless the user explicitly sets it.

Diff for: code/include/swoc/swoc_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
#pragma once
2424

2525
#if !defined(SWOC_VERSION_NS)
26-
#define SWOC_VERSION_NS _1_4_11
26+
#define SWOC_VERSION_NS _1_4_12
2727
#endif
2828

2929
namespace swoc { inline namespace SWOC_VERSION_NS {
3030
static constexpr unsigned MAJOR_VERSION = 1;
3131
static constexpr unsigned MINOR_VERSION = 4;
32-
static constexpr unsigned POINT_VERSION = 11;
32+
static constexpr unsigned POINT_VERSION = 12;
3333
}} // namespace swoc::SWOC_VERSION_NS

Diff for: code/libswoc.part

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Import("*")
22
PartName("libswoc")
3-
PartVersion("1.4.11")
3+
PartVersion("1.4.12")
44

55
src_files = [
66
"src/ArenaWriter.cc",

Diff for: doc/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "LibSWOC++"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "1.4.11"
41+
PROJECT_NUMBER = "1.4.12"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Diff for: doc/code/TextView.en.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ for values that are boolean.
343343

344344
.. sidebar:: Verification
345345

346-
`Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.4.11/unit_tests/ex_TextView.cc#L73>`__.
346+
`Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.4.12/unit_tests/ex_TextView.cc#L73>`__.
347347

348348
The basic list processing is the same as the previous example, extracting each comma separated
349349
element. The resulting element is treated as a "list" with ``=`` as the separator. Note if there is
@@ -395,7 +395,7 @@ do not, so a flag to strip quotes from the resulting elements is needed. The fin
395395

396396
.. sidebar:: Verification
397397

398-
`Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.4.11/unit_tests/ex_TextView.cc#L90>`__.
398+
`Test code for example <https://github.com/SolidWallOfCode/libswoc/blob/1.4.12/unit_tests/ex_TextView.cc#L90>`__.
399399

400400
This takes a :code:`TextView&` which is the source view which will be updated as tokens are removed
401401
(therefore the caller must do the empty view check). The other arguments are the separator character

Diff for: doc/code/ip_networking.en.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Blending Bitsets
217217

218218
Some details are omitted for brevity and because they aren't directly relevant. The full
219219
implementation, which is run as a unit test to verify its correctness,
220-
`is available here <https://github.com/SolidWallOfCode/libswoc/blob/1.4.11/unit_tests/ex_ipspace_properties.cc>`__.
220+
`is available here <https://github.com/SolidWallOfCode/libswoc/blob/1.4.12/unit_tests/ex_ipspace_properties.cc>`__.
221221
You can compile and step through the code to see how it works in more detail, or experiment
222222
with changing some of the example data.
223223

Diff for: doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
copyright = u'{}, [email protected]'.format(date.today().year)
8080

8181
# The full version, including alpha/beta/rc tags.
82-
release = "1.4.11"
82+
release = "1.4.12"
8383
# The short X.Y version.
8484
version = '.'.join(release.split('.', 2)[:2])
8585

Diff for: tools/ats-drop.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ library_includedir=$(includedir)/swoc
7575
7676
AM_CPPFLAGS += @SWOC_INCLUDES@
7777
78-
libtsswoc_la_LDFLAGS = @AM_LDFLAGS@ -no-undefined -release 1.4.11
78+
libtsswoc_la_LDFLAGS = @AM_LDFLAGS@ -no-undefined -release 1.4.12
7979
libtsswoc_la_SOURCES = \
8080
src/ArenaWriter.cc src/bw_format.cc src/bw_ip_format.cc src/Errata.cc src/MemArena.cc src/RBTree.cc src/swoc_file.cc src/swoc_ip.cc src/TextView.cc src/string_view_util.cc
8181

0 commit comments

Comments
 (0)