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
<p>You can download the latest source distribution as an archive:</p>
759
760
</div>
760
761
<div class="paragraph">
761
-
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.14/pugixml-1.14.zip">pugixml-1.14.zip</a> (Windows line endings)
762
+
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.15/pugixml-1.15.zip">pugixml-1.15.zip</a> (Windows line endings)
762
763
/
763
-
<a href="https://github.com/zeux/pugixml/releases/download/v1.14/pugixml-1.14.tar.gz">pugixml-1.14.tar.gz</a> (Unix line endings)</p>
764
+
<a href="https://github.com/zeux/pugixml/releases/download/v1.15/pugixml-1.15.tar.gz">pugixml-1.15.tar.gz</a> (Unix line endings)</p>
764
765
</div>
765
766
<div class="paragraph">
766
767
<p>The distribution contains library source, documentation (the manual you’re reading now and the quick start guide) and some code examples. After downloading the distribution, install pugixml by extracting all files from the compressed archive.</p>
<p>Many <code>xml_attribute::</code> and <code>xml_node::</code> functions now transparently support <code>std::string_view</code> and <code>std::string</code> when C++17 support is detected.</p>
4145
+
</li>
4146
+
</ol>
4147
+
</div>
4148
+
</li>
4149
+
<li>
4150
+
<p>CMake improvements:</p>
4151
+
<div class="olist arabic">
4152
+
<ol class="arabic">
4153
+
<li>
4154
+
<p>Improve <code>pkg-config</code> file generation for NixOS</p>
4155
+
</li>
4156
+
<li>
4157
+
<p><code>PUGIXML_BUILD_APPLE_FRAMEWORK</code> CMake option can be used to build pugixml as <code>.xcframework</code></p>
4158
+
</li>
4159
+
<li>
4160
+
<p><code>PUGIXML_INSTALL</code> CMake option can be used to disable installation targets</p>
* Report bugs and download new versions at https://pugixml.org/
@@ -14,7 +14,7 @@
14
14
// Define version macro; evaluates to major * 1000 + minor * 10 + patch so that it's safe to use in less-than comparisons
15
15
// Note: pugixml used major * 100 + minor * 10 + patch format up until 1.9 (which had version identifier 190); starting from pugixml 1.10, the minor version number is two digits
16
16
#ifndef PUGIXML_VERSION
17
-
# definePUGIXML_VERSION1140// 1.14
17
+
# definePUGIXML_VERSION1150// 1.15
18
18
#endif
19
19
20
20
// Include user configuration file (this can define various configuration macros)
0 commit comments