From ebe969d68948aa1e1810ab08115dfde013f422ea Mon Sep 17 00:00:00 2001 From: "Alan M. Carroll" Date: Thu, 5 Oct 2023 12:44:03 -0500 Subject: [PATCH] Update to 0.5.2 --- doc/Doxyfile | 2 +- doc/conf.py | 2 +- plugin/include/txn_box/common.h | 3 --- plugin/txn_box.part | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index b273629..84b189a 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Transaction Box" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "0.5.0" +PROJECT_NUMBER = "0.5.2" # 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/conf.py b/doc/conf.py index 9785117..54c288e 100755 --- a/doc/conf.py +++ b/doc/conf.py @@ -80,7 +80,7 @@ # The short X.Y version. version = "0.5" # The full version, including alpha/beta/rc tags. -release = "0.5.0" +release = "0.5.2" extlinks = { 'git': ( 'https://github.com/solidwallofcode/txn_box/tree/{}/%s'.format(release) , '') } diff --git a/plugin/include/txn_box/common.h b/plugin/include/txn_box/common.h index 4d518e9..ae9d36c 100644 --- a/plugin/include/txn_box/common.h +++ b/plugin/include/txn_box/common.h @@ -20,8 +20,6 @@ #include #include -#include - constexpr swoc::TextView DEBUG_TAG = "txn_box"; constexpr swoc::Errata::Severity S_DEBUG{1}; @@ -861,7 +859,6 @@ struct Global { swoc::Errata _preload_errata; int TxnArgIdx = -1; std::vector _args; ///< Global configuration arguments. - TSCont _cont; ///< Global continuation to start transaction handling. /// Amount of reserved storage requested by remap directives. /// This is not always correct, @c Context must handle overflows gracefully. std::atomic _remap_ctx_storage_required{0}; diff --git a/plugin/txn_box.part b/plugin/txn_box.part index 4244187..f03aca8 100644 --- a/plugin/txn_box.part +++ b/plugin/txn_box.part @@ -1,6 +1,6 @@ Import('*') PartName("txn_box") -PartVersion("0.5.0") +PartVersion("0.5.2") ts_ver = Version(env.subst(Component("trafficserver").DelaySubst("$PART_VERSION")))