Skip to content

Commit eaf8b2e

Browse files
committed
updates for 2.1.1 release
1 parent 3b4c385 commit eaf8b2e

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

CHANGES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2.1.1 - 2020-01-03
2+
#532 - warn if config true xpath refers to config false node
3+
#522 - find prefixes in xpath expressions in groupings
4+
#518 - broken xpath check
5+
#514 - re-added sample-xml-skeleton plugin (accidentally removed)
6+
#495 - "when" xpath context node was not correctly set in "uses"
7+
18
2.1 - 2019-10-20
29
added a plugin to generate SID files (see draft-ietf-core-sid)
310
thanks to @lemikev

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
## News ##
55

6+
**2020-01-03 - Version 2.1.1 released**
7+
8+
* this is a pure bug fix release
9+
610
**2019-10-20 - Version 2.1 released**
711

812
* added a plugin to generate SID files (see draft-ietf-core-sid)

man/man1/json2xml.1

Lines changed: 3 additions & 3 deletions
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: 2019-10-20
5+
.\" Date: 2020-01-03
66
.\" Manual: pyang manual
7-
.\" Source: json2xml-2.1
7+
.\" Source: json2xml-2.1.1
88
.\" Language: English
99
.\"
10-
.TH "JSON2XML" "1" "2019\-10\-20" "json2xml\-2\&.1" "pyang manual"
10+
.TH "JSON2XML" "1" "2020\-01\-03" "json2xml\-2\&.1\&.1" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

man/man1/pyang.1

Lines changed: 3 additions & 3 deletions
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: 2019-10-20
5+
.\" Date: 2020-01-03
66
.\" Manual: pyang manual
7-
.\" Source: pyang-2.1
7+
.\" Source: pyang-2.1.1
88
.\" Language: English
99
.\"
10-
.TH "PYANG" "1" "2019\-10\-20" "pyang\-2\&.1" "pyang manual"
10+
.TH "PYANG" "1" "2020\-01\-03" "pyang\-2\&.1\&.1" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

man/man1/yang2dsdl.1

Lines changed: 3 additions & 3 deletions
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: 2019-10-20
5+
.\" Date: 2020-01-03
66
.\" Manual: pyang manual
7-
.\" Source: yang2dsdl-2.1
7+
.\" Source: yang2dsdl-2.1.1
88
.\" Language: English
99
.\"
10-
.TH "YANG2DSDL" "1" "2019\-10\-20" "yang2dsdl\-2\&.1" "pyang manual"
10+
.TH "YANG2DSDL" "1" "2020\-01\-03" "yang2dsdl\-2\&.1\&.1" "pyang manual"
1111
.\" -----------------------------------------------------------------
1212
.\" * Define some portability stuff
1313
.\" -----------------------------------------------------------------

pyang/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
from . import statements
1616
from . import syntax
1717

18-
__version__ = '2.1'
19-
__date__ = '2019-10-20'
18+
__version__ = '2.1.1'
19+
__date__ = '2020-01-03'
2020

2121
class Context(object):
2222
"""Class which encapsulates a parse session"""

0 commit comments

Comments
 (0)