Skip to content

Commit

Permalink
Updates for 2.5.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj4668 committed Mar 30, 2022
1 parent e68f90f commit 41dda4f
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 12 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,28 @@
* 2.5.3 - 2022-03-30
```
added support for checking 'ancestor' and 'ancestor-or-self' XPATH axes
added new option --exclude-features which is used to prune the
data model by removing all nodes that are defined with the
corresponding "if-feature"
added --check-update-include-structures to apply the upgrade
checks also to sx:structures.
changed the error level of all CHK* errors so that they can be
changed into warnings
allow refinement of description/reference in action/notification
disable writing of Yacc parse tables to files
thanks to Robert Andersson
fix error locating /usr/share/yang with pip 21.3.1
thanks to cygnus2048
#802 - fixed crash when using transforms and the module imports
submodules
#797 - as per RFC 8340, added : to grouping header
#784 - corrupt files could lead to pyang crash
#778 - check deref target
#777 - check path after deref
#775 - correct multi-line argument wrapping when generating YANG
```

* 2.5.2 - 2021-12-02
```
#774 - fixed regression in 2.5.1 in ietf plugin
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTORS
@@ -1,4 +1,5 @@
Per Andersson
Robert Andersson
Ebben Aries
Stuart Bayley
Remington Campbell
Expand Down Expand Up @@ -27,6 +28,7 @@ Ganesh Nalawade
Rui Pires
Reshad Rahman
Erik Rask
Michael Richardson
Ralph Schmieder
Juergen Schoenwaelder
Romanos Skiadas
Expand All @@ -40,3 +42,4 @@ Quentin Young
Huaian Zhou
@gribok
@lemikev
@cygnus2048
2 changes: 1 addition & 1 deletion RELEASE-INFO
Expand Up @@ -9,7 +9,7 @@ make clean doc

# commit and tag the new release 'pyang-<version>'

git commit
git commit -m 'Updates for <version> release'
git tag pyang-<version>
git push
git push --tags
Expand Down
6 changes: 3 additions & 3 deletions man/man1/json2xml.1
Expand Up @@ -2,12 +2,12 @@
.\" Title: json2xml
.\" Author: Ladislav Lhotka <lhotka@nic.cz>
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\" Date: 2021-12-02
.\" Date: 2022-03-30
.\" Manual: pyang manual
.\" Source: json2xml-2.5.2
.\" Source: json2xml-2.5.3
.\" Language: English
.\"
.TH "JSON2XML" "1" "2021\-12\-02" "json2xml\-2\&.5\&.2" "pyang manual"
.TH "JSON2XML" "1" "2022\-03\-30" "json2xml\-2\&.5\&.3" "pyang manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions man/man1/pyang.1
Expand Up @@ -2,12 +2,12 @@
.\" Title: pyang
.\" Author: Martin Björklund <mbj@tail-f.com>
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\" Date: 2021-12-02
.\" Date: 2022-03-30
.\" Manual: pyang manual
.\" Source: pyang-2.5.2
.\" Source: pyang-2.5.3
.\" Language: English
.\"
.TH "PYANG" "1" "2021\-12\-02" "pyang\-2\&.5\&.2" "pyang manual"
.TH "PYANG" "1" "2022\-03\-30" "pyang\-2\&.5\&.3" "pyang manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions man/man1/yang2dsdl.1
Expand Up @@ -2,12 +2,12 @@
.\" Title: yang2dsdl
.\" Author: Ladislav Lhotka <lhotka@nic.cz>
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\" Date: 2021-12-02
.\" Date: 2022-03-30
.\" Manual: pyang manual
.\" Source: yang2dsdl-2.5.2
.\" Source: yang2dsdl-2.5.3
.\" Language: English
.\"
.TH "YANG2DSDL" "1" "2021\-12\-02" "yang2dsdl\-2\&.5\&.2" "pyang manual"
.TH "YANG2DSDL" "1" "2022\-03\-30" "yang2dsdl\-2\&.5\&.3" "pyang manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyang/__init__.py
@@ -1,4 +1,4 @@
"""The pyang library for parsing, validating, and converting YANG modules"""

__version__ = '2.5.2'
__date__ = '2021-12-02'
__version__ = '2.5.3'
__date__ = '2022-03-30'

0 comments on commit 41dda4f

Please sign in to comment.