From 930a2d68f4f99dfcc8e1d9e6a2a9d59a2fab07bf Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Mon, 16 Oct 2023 15:03:22 -0700 Subject: [PATCH] Update docs; bump patch version. --- CMakeLists.txt | 2 +- Dictionary.h | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13c5362..6cc6cb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.22) project(scsl LANGUAGES CXX - VERSION 0.2.3 + VERSION 0.2.4 DESCRIPTION "Shimmering Clarity Standard Library") set(CMAKE_CXX_STANDARD 14) diff --git a/Dictionary.h b/Dictionary.h index c28499c..fa387b3 100644 --- a/Dictionary.h +++ b/Dictionary.h @@ -45,12 +45,6 @@ namespace scsl { */ /// Dictionary implements a key-value store on top of Arena and TLV::Record. /// -/// phonebook of SSIDs and WPA keys on a microcontroller. This phonebook had to -/// be stored in persistent NVRAM storage, preƫmpting the use of std::map or -/// similar. The hardware in use was also not conducive to more expensive -/// options. It was originally named Phonebook until it was adapted to a more -/// general-purpose data structure. -/// /// Keys and vales are stored as sequential pairs of TLV records; they are /// expected to contain string values but this isn't necessarily the case. The /// tag values default to a tag of DICTIONARY_TAG_KEY, and values to a tag of