Skip to content

Commit 72b57af

Browse files
committed
Updates for 2.4.0 release
1 parent 00aabe7 commit 72b57af

File tree

6 files changed

+28
-11
lines changed

6 files changed

+28
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ schemas.xml
1616
*.idea
1717
.coverage*
1818
.profile*
19+
venv/
1920
/test/test_*/*.dsrl
2021
/test/test_*/*.rng
2122
/test/test_*/*.sch

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
* 2.4.0 - 2020-11-09
2+
3+
```
4+
#690 - stop uses expanding if import circular dependency exists
5+
#685 - report errors in sample-xml-skeleton
6+
#683 - fix sample-xml-skeleton unknown namespace crash
7+
#681 - newline fix in tree plugin
8+
#678 - deviate replace regression
9+
#673 - fix unreasonable the case node status
10+
#669 - type validator crashes on valid range restriction
11+
#665 - output status value in flatten plugin
12+
#661 - sort output for flatten plugin
13+
#660 - add module:prefix:node output for flatten plugin
14+
#657 - fix crash for concat function which has more than 3 params in xpath
15+
```
16+
117
* 2.3.2 - 2020-07-06
218

319
```

man/man1/json2xml.1

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
.\" Title: json2xml
33
.\" Author: Ladislav Lhotka <[email protected]>
44
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5-
.\" Date: 2020-07-06
5+
.\" Date: 2020-11-09
66
.\" Manual: pyang manual
7-
.\" Source: json2xml-2.3.2
7+
.\" Source: json2xml-2.4.0
88
.\" Language: English
99
.\"
10-
.TH "JSON2XML" "1" "2020\-07\-06" "json2xml\-2\&.3\&.2" "pyang manual"
10+
.TH "JSON2XML" "1" "2020\-11\-09" "json2xml\-2\&.4\&.0" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

man/man1/pyang.1

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
.\" Title: pyang
33
.\" Author: Martin Björklund <[email protected]>
44
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5-
.\" Date: 2020-07-06
5+
.\" Date: 2020-11-09
66
.\" Manual: pyang manual
7-
.\" Source: pyang-2.3.2
7+
.\" Source: pyang-2.4.0
88
.\" Language: English
99
.\"
10-
.TH "PYANG" "1" "2020\-07\-06" "pyang\-2\&.3\&.2" "pyang manual"
10+
.TH "PYANG" "1" "2020\-11\-09" "pyang\-2\&.4\&.0" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

man/man1/yang2dsdl.1

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
.\" Title: yang2dsdl
33
.\" Author: Ladislav Lhotka <[email protected]>
44
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5-
.\" Date: 2020-07-06
5+
.\" Date: 2020-11-09
66
.\" Manual: pyang manual
7-
.\" Source: yang2dsdl-2.3.2
7+
.\" Source: yang2dsdl-2.4.0
88
.\" Language: English
99
.\"
10-
.TH "YANG2DSDL" "1" "2020\-07\-06" "yang2dsdl\-2\&.3\&.2" "pyang manual"
10+
.TH "YANG2DSDL" "1" "2020\-11\-09" "yang2dsdl\-2\&.4\&.0" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

pyang/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""The pyang library for parsing, validating, and converting YANG modules"""
22

3-
__version__ = '2.3.2'
4-
__date__ = '2020-07-06'
3+
__version__ = '2.4.0'
4+
__date__ = '2020-11-09'

0 commit comments

Comments
 (0)