Skip to content

Commit

Permalink
docs: Update documentation for 1.10 release
Browse files Browse the repository at this point in the history
Update changelog and regenerate HTML documentation.
  • Loading branch information
zeux committed Sep 12, 2019
1 parent c660774 commit 3c59df5
Show file tree
Hide file tree
Showing 3 changed files with 543 additions and 417 deletions.
26 changes: 26 additions & 0 deletions docs/manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2131,6 +2131,31 @@ Because of the differences in document object models, performance considerations

:!numbered:

[[v1.10]]
=== v1.10 ^2019-09-15^

Maintenance release. Changes:

* Behavior changes:
. Tab characters (ASCII 9) in attribute values are now encoded as '	' to survive roundtripping
. `>` characters are no longer escaped in attribute values

* New features:
. Add Visual Studio .natvis files to improve debugging experience
. CMake improvements (USE_POSTFIX and BUILD_SHARED_AND_STATIC_LIBS options for building multiple versions and pkg-config tweaks)
. Add format_skip_control_chars formatting flag to skip non-printable ASCII characters that are invalid to use in well-formed XML files
. Add format_attribute_single_quote formatting flag to use single quotes for attribute values instead of default double quotes.

* XPath improvements:
. XPath union now results in a stable order that doesn't depend on memory allocations; crucially, this may require sorting the output of XPath query operation if you rely on the document-ordered traversal
. Improve performance of XPath union operation, making it ~2x faster

* Compatibility improvements:
. Fix Visual Studio warnings when built in a DLL configuration
. Fix static analysis false positives in Coverity and clang
. Fix Wdouble-promotion warnings in gcc
. Add Visual Studio 2019 support for NuGet packages

[[v1.9]]
=== v1.9 ^2018-04-04^

Expand Down Expand Up @@ -2655,6 +2680,7 @@ enum +++<a href="#xpath_value_type">xpath_value_type</a>+++
[source,subs="+macros"]
----
// Formatting options bit flags:
const unsigned int +++<a href="#format_attribute_single_quote">format_attribute_single_quote</a>+++
const unsigned int +++<a href="#format_default">format_default</a>+++
const unsigned int +++<a href="#format_indent">format_indent</a>+++
const unsigned int +++<a href="#format_indent_attributes">format_indent_attributes</a>+++
Expand Down
Loading

1 comment on commit 3c59df5

@manunamdev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello there !

Can someone please confirm that this pugi library can be used for transform via xml/xsl ? I have gone through manual but I didn't find it. so just wanted to confirm.

Please sign in to comment.