Skip to content

Commit 11ae388

Browse files
committed
Updated CHANGELOG
Turn off debug message Fetch tags during checkout for tests to allow version generation
1 parent f8aefe8 commit 11ae388

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/conda_recipe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
steps:
2323
- name: Check out repository code
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
submodules: true
2727

.github/workflows/test-suite.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232
fail-fast: false
3333
steps:
3434
- name: Check out repository code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
submodules: true
38+
fetch-tags: true
3839
# - name: Patch gtest
3940
# run: |
4041
# cd thirdparty/gtest
@@ -113,9 +114,10 @@ jobs:
113114
shell: bash -l {0}
114115
steps:
115116
- name: Check out repository code
116-
uses: actions/checkout@v5
117+
uses: actions/checkout@v6
117118
with:
118119
submodules: true
120+
fetch-tags: true
119121
# - name: Patch gtest
120122
# run: |
121123
# cd thirdparty/gtest

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ Because YggdrasilRapidJSON continues to merge updates from RapidJSON, the RapidJ
55

66
## X.X.X.X - XXXX-XX-XX
77

8-
## 1.1.0.4 - 2026-05-XX
8+
## 1.1.0.4 - 2026-06-XX
99

1010
### Bug fixes
1111
* Fix bug where version could not be set in the conda recipe build since it is created from a tar instead of the git repo
1212
* Fix bug where asan flags were added to list that could be used for Fortran, but are only valid for C or CXX
13+
* Fix bug where string without encoding specified did not validate against a schema specifying ASCII encoding
14+
* Fix bug in ObjWavefront get_int_array where dec parameter was not passed at the correct position resulting in arrays that were 1 indexed even when dec was true
1315

1416
### Maintenance
1517
* Update names of flag/library lists set based on options to adhere to pattern of <PREFIX>_PUBLIC/PRIVATE_<SUFFIX>
1618
* Check for ASAN library and store it in <PREFIX>_ASAN_LIB when using clang ASAN/UBSAN so it can be used via DYLD_INSERT_LIBRARIES for Python tests
1719
* Added cmake macros yggdrasil_rapidjson_target_config and yggdrasil_rapidjson_global_config for adding option based flags to a target or the current scope (and subscopes)
20+
* Remove conda build version of conda recipe build and associated test jobs (only rattler build will be used from now on as that is the version available on conda-forge)
1821

1922
## 1.1.0.3 - 2026-05-29
2023

YggdrasilRapidJSONMacros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ macro(yggdrasil_rapidjson_global_compiler_flags LANGUAGE)
179179
endmacro()
180180

181181
macro(yggdrasil_rapidjson_global_config LANGUAGE PREFIX)
182-
yggdrasil_rapidjson_config_show(${PREFIX} STATUS)
182+
yggdrasil_rapidjson_config_show(${PREFIX} DEBUG)
183183
set(global_compiler ${CMAKE_${LANGUAGE}_COMPILER_ID})
184184
set(global_linker ${global_compiler})
185185
list(

0 commit comments

Comments
 (0)