Skip to content

Commit

Permalink
Merge branch 'release/v0.3.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
fktn-k committed Aug 18, 2024
2 parents dea92ca + 4758cbb commit 5adfd97
Show file tree
Hide file tree
Showing 185 changed files with 1,885 additions and 483 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,32 +52,6 @@ jobs:
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build_type}} --output-on-failure -j ${{env.JOBS}}

xcode_for_macos11:
timeout-minutes: 10
runs-on: macos-11
strategy:
matrix:
xcode: [ '11.7', '12.4', '12.5.1', '13.0', '13.1', '13.2.1' ]
build_type: [ Debug, Release ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{matrix.xcode}}.app/Contents/Developer
JOBS: 2

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DFK_YAML_BUILD_TEST=ON

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j ${{env.JOBS}}

- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build_type}} --output-on-failure -j ${{env.JOBS}}

xcode_for_macos12:
timeout-minutes: 10
runs-on: macos-12
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,3 +269,32 @@ jobs:
cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j ${{env.JOBS}}
cd ${{github.workspace}}/build
ctest -C ${{matrix.build_type}} --output-on-failure -j ${{env.JOBS}}
ci_test_icpx:
runs-on: ubuntu-latest
strategy:
matrix:
build_type: [ Debug, Release ]

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install Intel oneAPI Base Toolkit
run: | # from the official document: https://www.intel.com/content/www/us/en/docs/oneapi/installation-guide-linux/2024-1/apt.html
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
sudo apt-get update
sudo apt-get install -y intel-basekit
- name: Configure CMake
run: |
source /opt/intel/oneapi/setvars.sh
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DFK_YAML_BUILD_TEST=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j ${{env.JOBS}}

- name: Test
run: ctest --test-dir ${{github.workspace}}/build -C ${{matrix.build_type}} --output-on-failure -j ${{env.JOBS}}
17 changes: 0 additions & 17 deletions .reuse/dep5

This file was deleted.

2 changes: 1 addition & 1 deletion .reuse/templates/fkYAML.commented.jinja2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// _______ __ __ __ _____ __ __ __
/// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
/// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9
/// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
/// |__| |_| \__| |_| |_| |_|___||___|______| 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.3.9
| __| _ < \_ _/| ___ | _ | |___ version 0.3.10
|__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML

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

## [v0.3.10](https://github.com/fktn-k/fkYAML/releases/tag/v0.3.10) (2024-08-18)

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

- \#366 Fix node-to-float conversion error if node's value is \<= 0 [\#371](https://github.com/fktn-k/fkYAML/pull/371) ([fktn-k](https://github.com/fktn-k))
- Apply node properties for the root node [\#370](https://github.com/fktn-k/fkYAML/pull/370) ([fktn-k](https://github.com/fktn-k))
- \#368 Fix line advancement after node props [\#369](https://github.com/fktn-k/fkYAML/pull/369) ([fktn-k](https://github.com/fktn-k))
- Allow trailing comma in flow mapping/sequence [\#365](https://github.com/fktn-k/fkYAML/pull/365) ([fktn-k](https://github.com/fktn-k))
- Fix bug in serializing alias keys [\#364](https://github.com/fktn-k/fkYAML/pull/364) ([fktn-k](https://github.com/fktn-k))
- Detect missing the end of directives markers \(---\) [\#361](https://github.com/fktn-k/fkYAML/pull/361) ([fktn-k](https://github.com/fktn-k))

- update configs for reuse v4 [\#372](https://github.com/fktn-k/fkYAML/pull/372) ([fktn-k](https://github.com/fktn-k))
- Remove CI jobs running with macOS 11 [\#367](https://github.com/fktn-k/fkYAML/pull/367) ([fktn-k](https://github.com/fktn-k))
- Support serializing multiple YAML docs [\#363](https://github.com/fktn-k/fkYAML/pull/363) ([fktn-k](https://github.com/fktn-k))
- Support parssing multiple YAML documents [\#362](https://github.com/fktn-k/fkYAML/pull/362) ([fktn-k](https://github.com/fktn-k))
- Support Intel icpx compiler [\#360](https://github.com/fktn-k/fkYAML/pull/360) ([fktn-k](https://github.com/fktn-k))

## [v0.3.9](https://github.com/fktn-k/fkYAML/releases/tag/v0.3.9) (2024-06-12)

[Full Changelog](https://github.com/fktn-k/fkYAML/compare/v0.3.8...v0.3.9)
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.3.9
VERSION 0.3.10
LANGUAGES CXX)

#############################################################
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TOOL_SRCS = $(shell find tool -type f -name '*.cpp' | sort)
# target version definition
TARGET_MAJOR_VERSION := 0
TARGET_MINOR_VERSION := 3
TARGET_PATCH_VERSION := 9
TARGET_PATCH_VERSION := 10
TARGET_VERSION_FULL := $(TARGET_MAJOR_VERSION).$(TARGET_MINOR_VERSION).$(TARGET_PATCH_VERSION)
VERSION_MACRO_FILE := include/fkYAML/detail/macros/version_macros.hpp

Expand Down Expand Up @@ -126,14 +126,14 @@ update-version-macros:
update-project-version:
$(shell sed -i 's/VERSION [0-9]\+\.[0-9]\+\.[0-9]\+/VERSION $(TARGET_VERSION_FULL)/' CMakeLists.txt)

# pre-requisites: pipx, reuse
# pre-requisites: pipx, reuse(>=v4.0.0, confirmed with v4.0.3)
reuse: update-reuse-templates
pipx run reuse annotate $(SRCS) --template fkYAML \
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \
--license MIT --year "2023-2024" --style c
--license MIT --year "2023-2024" --style cppsingle
pipx run reuse annotate $(TEST_SRCS) $(EXAMPLE_SRCS) $(TOOL_SRCS) --template fkYAML_support \
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \
--license MIT --year "2023-2024" --style c
--license MIT --year "2023-2024" --style cppsingle
pipx run reuse lint

update-sources: reuse update-version-macros
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,6 @@ Currently, the following compilers are known to work and used in GitHub Actions

| Compiler | Operating System |
| -------------------------- | -------------------------------------------------------------------------------------------------------------- |
| AppleClang 11.0.3.11030032 | [macOS 11](https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md) |
| AppleClang 12.0.0.12000032 | [macOS 11](https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md) |
| AppleClang 12.0.5.12050022 | [macOS 11](https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md) |
| AppleClang 13.0.0.13000029 | [macOS 11](https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md) |
| AppleClang 13.0.0.13000029 | [macOS 12](https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md) |
| AppleClang 13.1.6.13160021 | [macOS 12](https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md) |
| AppleClang 14.0.0.14000029 | [macOS 12](https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md) |
Expand Down Expand Up @@ -148,6 +144,7 @@ Currently, the following compilers are known to work and used in GitHub Actions
| GCC 12.3.0 | [Ubuntu 22.04](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md) |
| GCC 13.3.0 | [Ubuntu 22.04](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md) |
| GCC 14.1.0 | [Ubuntu 22.04](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md) |
| IntelLLVM 2024.1.2 | [Ubuntu 22.04](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md) |
| MinGW-64 8.1.0 | [Windows Server 2019](https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md) |
| MinGW-64 12.2.0 | [Windows Server 2022](https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md) |
| Visual Studio 16 2019 | [Windows Server 2019](https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md) |
Expand Down
22 changes: 22 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version = 1
SPDX-PackageName = "fkYAML"
SPDX-PackageSupplier = "Kensuke Fukutani <[email protected]>"
SPDX-PackageDownloadLocation = "https://github.com/fktn-k/fkYAML"

[[annotations]]
path = "**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2023 Kensuke Fukutani <[email protected]>"
SPDX-License-Identifier = "MIT"

[[annotations]]
path = "thirdparty/imapdl/**"
precedence = "aggregate"
SPDX-FileCopyrightText = ["2017 Georg Sauthoff <[email protected]>", "2022, Alexander Stohr, ZF Friedrichshafen AG"]
SPDX-License-Identifier = "GPL-3.0-only"

[[annotations]]
path = "tool/amalgamation/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2012 Erik Edlund <[email protected]>"
SPDX-License-Identifier = "BSD-3-Clause"
1 change: 1 addition & 0 deletions docs/examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ foreach(EX_SRC_FILE ${EX_SRC_FILES})
TARGET ${EX_SRC_FILE_BASE}
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/input.yaml $<TARGET_FILE_DIR:${EX_SRC_FILE_BASE}>
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/input_multi.yaml $<TARGET_FILE_DIR:${EX_SRC_FILE_BASE}>
COMMAND $<TARGET_FILE:${EX_SRC_FILE_BASE}> > ${CMAKE_CURRENT_SOURCE_DIR}/${EX_SRC_FILE_BASE}.output
)
endforeach()
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_add_anchor_name.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_add_tag_name.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_alias_of.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_at_basic_node.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_at_compatible_type.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_begin.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_boolean_type.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_const_iterator.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_1.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_2.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_3.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_4.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_5.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_6.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_constructor_7.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_contains.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_copy_assignment_operator.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/ex_basic_node_deserialize_char_array.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.3.9
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
//
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]>
Expand Down
Loading

0 comments on commit 5adfd97

Please sign in to comment.