add a new release
I also would be very happy to see a fresh release.
yaml-cpp 0.8.0does not compile (as in https://github.com/jbeder/yaml-cpp/issues/1359) with GCC 15.1, so I would appreciate a new release too.
Same here, with GCC 15.1 a new release fixing #1359 would be highly appreciated.
Same here.
俺也一样!
2 years have passed since the last release. Could you please make a new one?
Another ping for a new release! 🥇
I have to apply this patch for yaml to work now on new compilers (Apple clang version 17.0.0 for example). I hope a new release is done soon - assuming this patch is already in.
From abcdef1234567890 Mon Sep 17 00:00:00 2001
Subject: [PATCH] emitterutils: include <cstdint> (and <utility>) for uint16_t/uint32_t
diff --git a/src/emitterutils.cpp b/src/emitterutils.cpp
index 0000000..1111111 100644
--- a/src/emitterutils.cpp
+++ b/src/emitterutils.cpp
@@ -9,6 +9,8 @@
#include "yaml-cpp/mark.h"
#include "yaml-cpp/null.h"
#include "yaml-cpp/ostream_wrapper.h"
+#include <cstdint>
+#include <utility>
namespace YAML {
namespace Utils {