Skip to content

Commit

Permalink
Update docs and release info
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Jan 5, 2021
1 parent 69ed3ef commit 1f39ba8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
CHANGELOG
*********

`v2.1.0`_ (2020-12-xx)
`v2.1.0`_ (2021-01-05)
======================
* Create custom class hierarchy for XPath nodes that replaces named-tuples
* Bind attribute nodes, text nodes and namespace nodes to parent element (issue #31)

`v2.0.5`_ (2020-12-02)
Expand Down
4 changes: 1 addition & 3 deletions doc/xpath_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ implementing concrete interfaces to other types of XML Schema processors.
XPath nodes
===========

XPath nodes are processed using a set of namedtuple classes. The choice of
a tuple-based processing is for speed and because these are only temporary
containers, being that the final results are cleaned from intermediate tuples.
XPath nodes are processed using a set of classes derived from :class:`XPathNode`:

.. autoclass:: elementpath.AttributeNode
.. autoclass:: elementpath.TextNode
Expand Down
2 changes: 1 addition & 1 deletion publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publiccodeYmlVersion: '0.2'
name: elementpath
url: 'https://github.com/sissaschool/elementpath'
landingURL: 'https://github.com/sissaschool/elementpath'
releaseDate: '2020-12-xx'
releaseDate: '2020-01-05'
softwareVersion: v2.1.0
developmentStatus: stable
platforms:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
license_file='LICENSE',
description='XPath 1.0/2.0 parsers and selectors for ElementTree and lxml',
long_description=long_description,
python_requires='>=3.6.1',
python_requires='>=3.6',
extra_require={
'dev': ['tox', 'coverage', 'lxml', 'xmlschema~=1.2.3', 'Sphinx']
},
Expand Down

0 comments on commit 1f39ba8

Please sign in to comment.