Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-10 | Fix memory consumption when reading documents | David Robillard | 1 | -1/+1 | |
2022-05-26 | Serd 0.30.12v0.30.12 | David Robillard | 1 | -1/+1 | |
2021-07-09 | Fix accidentally disabled writer test | David Robillard | 1 | -1/+3 | |
2021-05-31 | Remove default case from exhaustive switch | David Robillard | 1 | -1/+0 | |
2021-05-31 | Fix unannotated switch fallthroughs | David Robillard | 1 | -1/+0 | |
Unfortunately, clang does not support doing this with comments, requiring yet more preprocessor gunk. | |||||
2021-05-16 | Suppress silly VS2019 warning | David Robillard | 1 | -0/+1 | |
2021-04-11 | Support combining several BSD-style command line flags in serdi | David Robillard | 1 | -0/+3 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 1 | -1/+1 | |
2021-01-20 | Serd 0.30.10v0.30.10 | David Robillard | 1 | -1/+1 | |
2021-01-17 | Remove aligned_alloc support | David Robillard | 1 | -7/+0 | |
This causes build issues when targeting older versions of MacOS. That could be fixed, but I don't have the ability to reproduce it at the moment, and it's a problem in the build system check code which is about to be entirely replaced anyway. Since, as far as I know, this does not actually add aligned allocation support to any real system (they all support one of the other methods), just remove it for now. | |||||
2021-01-16 | Fix documentation installation directory | Guido Aulisi | 1 | -0/+1 | |
2021-01-09 | Fix SERD_DISABLE_DEPRECATED | David Robillard | 1 | -1/+1 | |
2021-01-07 | Serd 0.30.8v0.30.8 | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use SERD_STATIC instead of SERD_SHARED to control visibility | David Robillard | 1 | -4/+4 | |
For consistency, this seems to be the most common convention. | |||||
2021-01-01 | Remove the need for a generated configuration header | David Robillard | 1 | -4/+4 | |
2020-12-21 | Generate documentation with Sphinx | David Robillard | 1 | -7/+4 | |
2020-11-17 | Fix broken links in documentation | David Robillard | 1 | -1/+1 | |
2020-11-15 | Run flake8 on serd_bench.py | David Robillard | 1 | -0/+4 | |
2020-11-14 | Refuse to write relative URI references to NTriples | David Robillard | 1 | -1/+2 | |
2020-11-13 | Suppress simple test output | David Robillard | 1 | -1/+1 | |
2020-11-13 | Use aligned allocation via C11 or Windows API where possible | David Robillard | 1 | -0/+7 | |
2020-11-12 | Use C11 if possible | David Robillard | 1 | -1/+3 | |
2020-11-12 | Use built-in abspath() | David Robillard | 1 | -1/+1 | |
2020-11-11 | Set up environment for using serdi as a subproject | David Robillard | 1 | -0/+9 | |
2020-11-11 | Fix link errors with sanitizers at the source in autowaf | David Robillard | 1 | -6/+0 | |
2020-11-11 | Fix build as a subproject | David Robillard | 1 | -5/+7 | |
2020-11-11 | Add CI row to run clang sanitizers | David Robillard | 1 | -0/+6 | |
Some of these are also supported by GCC, but clang supports more and clang on Linux was uncovered before anyway, so this fixes that situation as well. | |||||
2020-11-11 | Add nonnull and nullable attributes to API | David Robillard | 1 | -0/+2 | |
This will warn if NULL is passed to any nonnull-annotated parameter, and is also supported by sanitizers which can check for violations at runtime. Unfortunately, it is currently only supported by clang. GCC has a similar feature in the nonnull attribute, but this has a different syntax (it's a function attribute) and is more dangerous since it is used by the optimizer to assume a null pointer is undefined behavior. This one just warns and still allows code to handle the situation gracefully, which I think is more appropriate for a library API. Note that this optimization behavior is not some unlikely edge case: switching these attributes to the GCC one will break release builds. | |||||
2020-11-10 | Add const, pure, and malloc function attributes | David Robillard | 1 | -3/+0 | |
2020-11-10 | Fix warnings in MinGW build | David Robillard | 1 | -0/+3 | |
2020-11-10 | Fix header installation | David Robillard | 1 | -1/+1 | |
2020-11-09 | Split out reader and writer tests | David Robillard | 1 | -2/+4 | |
2020-11-09 | Split out string tests | David Robillard | 1 | -0/+2 | |
2020-11-09 | Split out URI tests | David Robillard | 1 | -1/+3 | |
2020-11-09 | Rename unit tests to start with a consistent prefix | David Robillard | 1 | -8/+8 | |
2020-11-09 | Check headers with stricter clang-tidy settings | David Robillard | 1 | -1/+3 | |
2020-11-09 | Move header to conventional include directory | David Robillard | 1 | -4/+4 | |
2020-11-09 | Rename test directory | David Robillard | 1 | -15/+15 | |
2020-10-27 | Update autowaf | David Robillard | 1 | -2/+2 | |
2020-09-27 | Serd 0.30.6v0.30.6 | David Robillard | 1 | -1/+1 | |
2020-08-16 | Ensure that all free methods tolerate NULL | David Robillard | 1 | -0/+2 | |
2020-08-16 | Move Env tests to a separate file | David Robillard | 1 | -0/+2 | |
2020-08-16 | Add test for reading chunks | David Robillard | 1 | -0/+2 | |
2020-08-14 | Use ultra-strict warnings and Werror on Windows CI rows | David Robillard | 1 | -0/+2 | |
2020-08-14 | Factor out command wrapping for ARM emulator | David Robillard | 1 | -5/+9 | |
2020-08-14 | Factor out test option iterator generation | David Robillard | 1 | -7/+12 | |
2020-08-14 | Fix Wswitch-enum warnings | David Robillard | 1 | -2/+0 | |
2020-08-14 | Separate base64 implementation | David Robillard | 1 | -1/+2 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 1 | -9/+24 | |
2020-07-15 | Fix strict build with MinGW | David Robillard | 1 | -0/+1 | |