Skip to content

Commit

Permalink
Updates for 2.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj4668 committed Jun 22, 2021
1 parent 6a09ff6 commit f4e2c8f
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 11 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,24 @@
* 2.5.0 - 2021-06-21
```
moved automated tests from travis ci to github actions
added new plugin for verifying 3GPP YANG authoring rules
thanks to Balázs Lengyel
added --verify-revision-history
pretty print long paths in -f yang
#732 - check_update plugin: now handles "max-elements" correctly
thanks to Paul Merlo
#726 - sid plugin: prefix paths of data nodes of a grouping
thanks to @lemikev
#725 - ignore comments before first YANG statement when parsing
#723 - documentation fix
#716 - sid plugin: same SID could be generated twice
thanks to Michel Veillette
#700 - parser now detects missing quotes correctly
#699 - fix crash on xpath expression for path-filter case
#409 - fix leafref from submodule to parent module in YANG 1.1
```

* 2.4.0 - 2020-11-09

```
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Expand Up @@ -15,6 +15,7 @@ Mahesh Jethanandani
Denys Knertser
Mallikarjunarao Kosuri
Miroslav Kovac
Balázs Lengyel
Miroslav Los
Ladislav Lhotka
William Lupton
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: 2020-11-09
.\" Date: 2021-06-21
.\" Manual: pyang manual
.\" Source: json2xml-2.4.0
.\" Source: json2xml-2.5.0
.\" Language: English
.\"
.TH "JSON2XML" "1" "2020\-11\-09" "json2xml\-2\&.4\&.0" "pyang manual"
.TH "JSON2XML" "1" "2021\-06\-21" "json2xml\-2\&.5\&.0" "pyang manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down
11 changes: 8 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: 2020-11-09
.\" Date: 2021-06-21
.\" Manual: pyang manual
.\" Source: pyang-2.4.0
.\" Source: pyang-2.5.0
.\" Language: English
.\"
.TH "PYANG" "1" "2020\-11\-09" "pyang\-2\&.4\&.0" "pyang manual"
.TH "PYANG" "1" "2021\-06\-21" "pyang\-2\&.5\&.0" "pyang manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down Expand Up @@ -214,6 +214,11 @@ This parameter has effect only if a plugin can handle comments\&.
Validate the module(s) according to the canonical YANG order\&.
.RE
.PP
\fB\-\-verify\-revision\-history\fR
.RS 4
Ensure that the revision history in the given module(s) is correct, by checking that it can find the old revisions of the module(s) in the YANG module search path\&.
.RE
.PP
\fB\-\-strict\fR
.RS 4
Force strict YANG compliance\&. Currently this checks that the deref() function is not used in XPath expressions and leafrefs\&.
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: 2020-11-09
.\" Date: 2021-06-21
.\" Manual: pyang manual
.\" Source: yang2dsdl-2.4.0
.\" Source: yang2dsdl-2.5.0
.\" Language: English
.\"
.TH "YANG2DSDL" "1" "2020\-11\-09" "yang2dsdl\-2\&.4\&.0" "pyang manual"
.TH "YANG2DSDL" "1" "2021\-06\-21" "yang2dsdl\-2\&.5\&.0" "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.4.0'
__date__ = '2020-11-09'
__version__ = '2.5.0'
__date__ = '2021-06-21'

0 comments on commit f4e2c8f

Please sign in to comment.