Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
0.5.2 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhi Keshav committed Dec 2, 2016
1 parent e096892 commit cbfbdac
Show file tree
Hide file tree
Showing 576 changed files with 306,534 additions and 202,886 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ install:

script:
- cd ../core/samples
- python ./bgp_codec.py
- ./bgp_codec.py

22 changes: 21 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
**2016-08-03 version 0.5.1:**
**2016-11-30 version 0.5.2:**

* CRUD service / Codec service / Netconf service improvements
* Improved error handling for mismatched model API types ([#241](https://github.com/CiscoDevNet/ydk-gen/issues/241))
* Fixed issues with certain operations in netconf service ([#247](https://github.com/CiscoDevNet/ydk-gen/issues/247), [#248](https://github.com/CiscoDevNet/ydk-gen/issues/248), [#252](https://github.com/CiscoDevNet/ydk-gen/issues/252), [#235](https://github.com/CiscoDevNet/ydk-gen/issues/235))
* Fixed issue with CRUD service identityref keys ([#257](https://github.com/CiscoDevNet/ydk-gen/issues/257))

* Bundle improvements
* Made generate.py executable ([#227](https://github.com/CiscoDevNet/ydk-gen/issues/227))
* Removed auto capitalization of enum literals ([#230](https://github.com/CiscoDevNet/ydk-gen/issues/230))
* Updated [`cisco-ios-xr` bundle](https://github.com/CiscoDevNet/ydk-gen/blob/master/profiles/bundles/cisco-ios-xr_6_1_2.json) to support Cisco IOS XR 6.1.2 release ([#316](https://github.com/CiscoDevNet/ydk-gen/pull/316))

* Logging improvements
* Improved logging for services and providers ([#251](https://github.com/CiscoDevNet/ydk-gen/issues/251), [#254](https://github.com/CiscoDevNet/ydk-gen/issues/254), [#280](https://github.com/CiscoDevNet/ydk-gen/issues/280), [#283](https://github.com/CiscoDevNet/ydk-gen/issues/283), [#284](https://github.com/CiscoDevNet/ydk-gen/issues/284))

* Documentation improvements
* Added YDK logos and reorganized to be more readable ([#301](https://github.com/CiscoDevNet/ydk-gen/pull/301), [#296](https://github.com/CiscoDevNet/ydk-gen/pull/296), [#289](https://github.com/CiscoDevNet/ydk-gen/pull/289))
* Improved documentation of YANG attributes like data type (configuration or state), default value, units, status etc ([#249](https://github.com/CiscoDevNet/ydk-gen/issues/249), [#290](https://github.com/CiscoDevNet/ydk-gen/issues/290))
* Improved netconf service documentation ([#235](https://github.com/CiscoDevNet/ydk-gen/issues/235))

**2016-10-10 version 0.5.1:**

* Support for Python3
* Introduced support for Python 3 ([#60](https://github.com/CiscoDevNet/ydk-gen/issues/60))
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ YDK uses common Python logging. All modules are based on the "ydk" log::

Release Notes
--------------
The current YDK release version is 0.5.0 (beta). YDK-Py is licensed under the Apache 2.0 License.
The current YDK release version is 0.5.2 (beta). YDK-Py is licensed under the Apache 2.0 License.

Documentation and Support
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion cisco-ios-xr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'ydk>=0.5.1']

NMSP_PKG_NAME = "ydk-models-cisco_ios_xr"
NMSP_PKG_VERSION = "6.1.1"
NMSP_PKG_VERSION = "6.1.2"
NMSP_PKG_DEPENDENCIES = ['ydk-models-ietf>=0.1.1', 'ydk-models-openconfig>=0.1.1']


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

from enum import Enum
from ydk._core._dm_meta_info import _MetaInfoClassMember, _MetaInfoClass, _MetaInfoEnum
from ydk.types import Empty, YList, DELETE, Decimal64, FixedBitsDict
from ydk._core._dm_meta_info import ATTRIBUTE, REFERENCE_CLASS, REFERENCE_LIST, REFERENCE_LEAFLIST, REFERENCE_IDENTITY_CLASS, REFERENCE_ENUM_CLASS, REFERENCE_BITS, REFERENCE_UNION
from ydk.providers._importer import _yang_ns


_deviation_table = {
'RoutingPolicy.Limits.maximum_number_of_policies' : {
'deviation_typ' : 'replace',
'keyword_value' : [
('default', 15000),
]
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

from enum import Enum
from ydk._core._dm_meta_info import _MetaInfoClassMember, _MetaInfoClass, _MetaInfoEnum
from ydk.types import Empty, YList, DELETE, Decimal64, FixedBitsDict
from ydk._core._dm_meta_info import ATTRIBUTE, REFERENCE_CLASS, REFERENCE_LIST, REFERENCE_LEAFLIST, REFERENCE_IDENTITY_CLASS, REFERENCE_ENUM_CLASS, REFERENCE_BITS, REFERENCE_UNION
from ydk.providers._importer import _yang_ns


_deviation_table = {
'NetconfState.Capabilities' : {
'deviation_typ' : 'not_supported',
},
'NetconfState.Datastores' : {
'deviation_typ' : 'not_supported',
},
'NetconfState.Sessions' : {
'deviation_typ' : 'not_supported',
},
'NetconfState.Statistics' : {
'deviation_typ' : 'not_supported',
},
}

0 comments on commit cbfbdac

Please sign in to comment.