Skip to content

Commit 2067215

Browse files
committed
Merge branch 'release/v0.3.11'
2 parents 5adfd97 + 44a24df commit 2067215

166 files changed

Lines changed: 486 additions & 299 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ on:
1212
- test/**
1313
- CMakeLists.txt
1414
- Makefile
15-
pull_request:
15+
# to grant pull-requests write permission to fork repos as well
16+
pull_request_target:
1617
paths:
1718
- .github/workflows/coverage.yml
1819
- cmake/**
@@ -22,8 +23,6 @@ on:
2223
- Makefile
2324
workflow_dispatch:
2425

25-
26-
2726
jobs:
2827
coverage:
2928
timeout-minutes: 10
@@ -34,6 +33,7 @@ jobs:
3433
steps:
3534
- uses: actions/checkout@v4
3635
with:
36+
ref: ${{github.head_ref}}
3737
submodules: recursive
3838

3939
- name: Install lcov
@@ -54,7 +54,7 @@ jobs:
5454

5555
- name: Decide the artifact name
5656
id: create_zip
57-
if: github.event_name == 'pull_request'
57+
if: github.event_name == 'pull_request_target'
5858
env:
5959
PR_NUMBER: ${{github.event.number}}
6060
run: |

.github/workflows/format_check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ on:
1414
- tool/amalgamation/**
1515
- CMakeLists.txt
1616
- .clang-format
17-
pull_request:
17+
# to grant contents write permission to fork repos as well
18+
pull_request_target:
1819
paths:
1920
- .github/workflows/format_check.yml
2021
- include/**

.reuse/templates/fkYAML.commented.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// _______ __ __ __ _____ __ __ __
22
/// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library
3-
/// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
3+
/// | __| _ < \_ _/| ___ | _ | |___ version 0.3.11
44
/// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
55
///
66
{% for copyright_line in copyright_lines %}

.reuse/templates/fkYAML_support.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_______ __ __ __ _____ __ __ __
22
| __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
3-
| __| _ < \_ _/| ___ | _ | |___ version 0.3.10
3+
| __| _ < \_ _/| ___ | _ | |___ version 0.3.11
44
|__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
55

66
{% for copyright_line in copyright_lines %}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.8)
66

77
project(
88
fkYAML
9-
VERSION 0.3.10
9+
VERSION 0.3.11
1010
LANGUAGES CXX)
1111

1212
#############################################################

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TOOL_SRCS = $(shell find tool -type f -name '*.cpp' | sort)
1616
# target version definition
1717
TARGET_MAJOR_VERSION := 0
1818
TARGET_MINOR_VERSION := 3
19-
TARGET_PATCH_VERSION := 10
19+
TARGET_PATCH_VERSION := 11
2020
TARGET_VERSION_FULL := $(TARGET_MAJOR_VERSION).$(TARGET_MINOR_VERSION).$(TARGET_PATCH_VERSION)
2121
VERSION_MACRO_FILE := include/fkYAML/detail/macros/version_macros.hpp
2222

docs/examples/ex_basic_node_add_anchor_name.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// _______ __ __ __ _____ __ __ __
22
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
3-
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
3+
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.11
44
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
55
//
66
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <fktn.dev@gmail.com>

docs/examples/ex_basic_node_add_tag_name.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// _______ __ __ __ _____ __ __ __
22
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
3-
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
3+
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.11
44
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
55
//
66
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <fktn.dev@gmail.com>

docs/examples/ex_basic_node_alias_of.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// _______ __ __ __ _____ __ __ __
22
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code)
3-
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10
3+
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.11
44
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML
55
//
66
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <fktn.dev@gmail.com>

0 commit comments

Comments
 (0)