Skip to content

Commit

Permalink
Merge tag 'v0.1.2' into develop
Browse files Browse the repository at this point in the history
fkYAML version 0.1.2
  • Loading branch information
fktn-k committed Oct 18, 2023
2 parents 7c52d49 + f3244e6 commit 43e181a
Show file tree
Hide file tree
Showing 47 changed files with 63 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .reuse/templates/fkYAML.commented.jinja2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
{% for copyright_line in copyright_lines %}
Expand Down
2 changes: 1 addition & 1 deletion .reuse/templates/fkYAML_support.jinja2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_______ __ __ __ _____ __ __ __
| __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
| __| _ < \_ _/| ___ | _ | |___ version 0.1.1
| __| _ < \_ _/| ___ | _ | |___ version 0.1.2
|__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML

{% for copyright_line in copyright_lines %}
Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
# Changelog

## [v0.1.2](https://github.com/fktn-k/fkYAML/releases/tag/v0.1.2) (2023-10-18)

[Full Changelog](https://github.com/fktn-k/fkYAML/compare/v0.1.1...v0.1.2)

- \#150 Added tests for basic\_deserializer class [\#155](https://github.com/fktn-k/fkYAML/pull/155) ([fktn-k](https://github.com/fktn-k))
- \#150 added/modified unit tests for lexical\_analyzer test [\#154](https://github.com/fktn-k/fkYAML/pull/154) ([fktn-k](https://github.com/fktn-k))
- \#150 Covered a missing branch in ordered\_map class [\#153](https://github.com/fktn-k/fkYAML/pull/153) ([fktn-k](https://github.com/fktn-k))
- \#150 Excluded unreachable lines in serializer class test from coverage data [\#152](https://github.com/fktn-k/fkYAML/pull/152) ([fktn-k](https://github.com/fktn-k))
- \#150 Add unit tests for input\_handler class [\#151](https://github.com/fktn-k/fkYAML/pull/151) ([fktn-k](https://github.com/fktn-k))
- \#133 refactor lexer [\#146](https://github.com/fktn-k/fkYAML/pull/146) ([fktn-k](https://github.com/fktn-k))

- Fix version\_macros.hpp file path in Makefile [\#147](https://github.com/fktn-k/fkYAML/pull/147) ([fktn-k](https://github.com/fktn-k))

- Updated documents [\#156](https://github.com/fktn-k/fkYAML/pull/156) ([fktn-k](https://github.com/fktn-k))

## [v0.1.1](https://github.com/fktn-k/fkYAML/releases/tag/v0.1.1) (2023-10-15)

[Full Changelog](https://github.com/fktn-k/fkYAML/compare/v0.1.0...v0.1.1)

- hotfix to support v0.1.0 APIs in cmake_fetch_content_test. ([fktn-k](https://github.com/fktn-k))

## [v0.1.0](https://github.com/fktn-k/fkYAML/releases/tag/v0.1.0) (2023-10-15)

[Full Changelog](https://github.com/fktn-k/fkYAML/compare/v0.0.1...v0.1.0)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.8)

project(
fkYAML
VERSION 0.1.1
VERSION 0.1.2
LANGUAGES CXX)

#
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CMAKE_SCRIPTS = $(shell find . -type f \( -name 'CMakeLists.txt' -o -name '*.cma
# target version definition
TARGET_MAJOR_VERSION := 0
TARGET_MINOR_VERSION := 1
TARGET_PATCH_VERSION := 1
TARGET_PATCH_VERSION := 2
TARGET_VERSION_FULL := $(TARGET_MAJOR_VERSION).$(TARGET_MINOR_VERSION).$(TARGET_PATCH_VERSION)
VERSION_MACRO_FILE := include/fkYAML/detail/macros/version_macros.hpp

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Also, if your C++ project uses [CMake](https://cmake.org/) as the build system,
FetchContent_Declare(
fkYAML
GIT_REPOSITORY https://github.com/fktn-k/fkYAML.git
GIT_TAG v0.1.1
GIT_TAG v0.1.2
)
FetchContent_MakeAvailable(fkYAML)
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/assert.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/conversions/from_node.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/conversions/from_string.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/conversions/to_node.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/input/deserializer.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/input/input_adapter.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/input/input_handler.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/input/lexical_analyzer.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/iterator.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/macros/cpp_config_macros.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions include/fkYAML/detail/macros/version_macros.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand All @@ -12,7 +12,7 @@

// Check version definitions if already defined.
#if defined(FK_YAML_MAJOR_VERSION) && defined(FK_YAML_MINOR_VERSION) && defined(FK_YAML_PATCH_VERSION)
#if FK_YAML_MAJOR_VERSION != 0 || FK_YAML_MINOR_VERSION != 1 || FK_YAML_PATCH_VERSION != 1
#if FK_YAML_MAJOR_VERSION != 0 || FK_YAML_MINOR_VERSION != 1 || FK_YAML_PATCH_VERSION != 2
#warning Already included a different version of the fkYAML library!
#else
// define macros to skip defining macros down below.
Expand All @@ -24,7 +24,7 @@

#define FK_YAML_MAJOR_VERSION 0
#define FK_YAML_MINOR_VERSION 1
#define FK_YAML_PATCH_VERSION 1
#define FK_YAML_PATCH_VERSION 2

#define FK_YAML_NAMESPACE_VERSION_CONCAT_IMPL(major, minor, patch) v##major##_##minor##_##patch

Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/meta/detect.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/meta/input_adapter_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/meta/node_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/meta/stl_supplement.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/meta/type_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/output/serializer.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/types/lexical_token_t.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/types/node_t.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/detail/types/yaml_version_t.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/exception.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/node.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/node_value_converter.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion include/fkYAML/ordered_map.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* _______ __ __ __ _____ __ __ __
* | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
* | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
* |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
*
* SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/cmake_add_subdirectory_test/project/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/cmake_fetch_content_test/project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(FetchContent)
FetchContent_Declare(
fkYAML
GIT_REPOSITORY https://github.com/fktn-k/fkYAML.git
GIT_TAG v0.1.1)
GIT_TAG v0.1.2)
FetchContent_MakeAvailable(fkYAML)

add_executable(CMakeFetchContentTest main.cpp)
Expand Down
2 changes: 1 addition & 1 deletion test/cmake_fetch_content_test/project/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/cmake_find_package_test/project/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/test_deserializer_class.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/test_exception_class.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/test_from_string.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/test_input_handler.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_test/test_iterator_class.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// _______ __ __ __ _____ __ __ __
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.1
// | __| _ < \_ _/| ___ | _ | |___ version 0.1.2
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023 Kensuke Fukutani <[email protected]>
Expand Down
Loading

0 comments on commit 43e181a

Please sign in to comment.