You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[PR#459](https://github.com/biojppm/rapidyaml/pull/459): Add version functions and macros:
4
+
```cpp
5
+
#defineRYML_VERSION "0.7.1"
6
+
#define RYML_VERSION_MAJOR 0
7
+
#define RYML_VERSION_MINOR 7
8
+
#define RYML_VERSION_PATCH 1
9
+
csubstr version();
10
+
int version_major();
11
+
int version_minor();
12
+
int version_patch();
13
+
```
14
+
15
+
## Fixes
16
+
17
+
- Fix [#455](https://github.com/biojppm/rapidyaml/issues/455): parsing of trailing val-less nested maps when deindented to maps ([PR#460](https://github.com/biojppm/rapidyaml/pull/460))
18
+
- Fix filtering of double-quoted keys in block maps ([PR#452](https://github.com/biojppm/rapidyaml/pull/452))
19
+
- Fix [#440](https://github.com/biojppm/rapidyaml/issues/440): some tests failing with gcc -O2 (hypothetically due to undefined behavior)
20
+
- This was accomplished by refactoring some internal parser functions; see the comments in [#440](https://github.com/biojppm/rapidyaml/issues/440) for further details.
21
+
- Also, fix all warnings from `scan-build`.
22
+
- Use malloc.h instead of alloca.h on MinGW ([PR#447](https://github.com/biojppm/rapidyaml/pull/447))
-[PR#459](https://github.com/biojppm/rapidyaml/pull/459): Add version functions and macros:
4
-
```cpp
5
-
#defineRYML_VERSION "0.7.1"
6
-
#define RYML_VERSION_MAJOR 0
7
-
#define RYML_VERSION_MINOR 7
8
-
#define RYML_VERSION_PATCH 1
9
-
csubstr version();
10
-
int version_major();
11
-
int version_minor();
12
-
int version_patch();
13
-
```
14
-
15
-
## Fixes
16
-
17
-
- Fix [#455](https://github.com/biojppm/rapidyaml/issues/455): parsing of trailing val-less nested maps when deindented to maps ([PR#460](https://github.com/biojppm/rapidyaml/pull/460))
18
-
- Fix filtering of double-quoted keys in block maps ([PR#452](https://github.com/biojppm/rapidyaml/pull/452))
19
-
- Fix [#440](https://github.com/biojppm/rapidyaml/issues/440): some tests failing with gcc -O2 (hypothetically due to undefined behavior)
20
-
- This was accomplished by refactoring some internal parser functions; see the comments in [#440](https://github.com/biojppm/rapidyaml/issues/440) for further details.
21
-
- Also, fix all warnings from `scan-build`.
22
-
- Use malloc.h instead of alloca.h on MinGW ([PR#447](https://github.com/biojppm/rapidyaml/pull/447))
0 commit comments