Skip to content

Commit

Permalink
23.3.3 released
Browse files Browse the repository at this point in the history
  • Loading branch information
SRBuilds committed Jun 1, 2023
1 parent 2ee58ee commit 2c37de5
Show file tree
Hide file tree
Showing 25 changed files with 49 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In order to use the pySROS library the following pre-requisites must be met:

## License ##

Copyright 2021 Nokia.
Copyright 2021-2023 Nokia.

The license is located [here](LICENSE.md).

Expand Down
Binary file added docs/source/_static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
# -- Project information -----------------------------------------------------

project = 'pySROS'
copyright = '2021, Nokia'
copyright = '2021-2023, Nokia'
author = 'Nokia'

# The full version, including alpha/beta/rc tags
version = '23.3.2'
release = '23.3.2'
version = '23.3.3'
release = '23.3.3'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -48,5 +48,5 @@
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_logo = "_static/nokia-logo-blue-2023.png"

html_favicon = '_static/favicon.png'

1 change: 1 addition & 0 deletions docs/source/features/22.02.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release 22.2
22.2.2
######

* No additional features

22.2.1
######
Expand Down
2 changes: 2 additions & 0 deletions docs/source/features/22.05.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Release 22.5
22.5.2
######

* No additional features

.. Reviewed by PLM 20220617
.. Reviewed by TechComms 20220620
Expand Down
2 changes: 2 additions & 0 deletions docs/source/features/22.07.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Release 22.7
22.7.2
######

* No additional features

22.7.1
######

Expand Down
6 changes: 6 additions & 0 deletions docs/source/features/22.10.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
Release 22.10
*************

22.10.4
#######

* Minimum supported lxml version now 4.9.2

22.10.3
#######

* No additional features

22.10.2
#######
Expand Down
14 changes: 13 additions & 1 deletion docs/source/features/23.03.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,29 @@
Release 23.3
************

23.3.3
######

* No additional features

.. Reviewed by PLM 20230511
.. Reviewed by TechComms 20230516
23.3.2
######

* No additional features

.. Reviewed by PLM 20230511
.. Reviewed by TechComms 20230516
23.3.1
######

* Improved handling of :ref:`yang_identityrefs`
* Minimum supported lxml version now 4.9.2


.. Reviewed by PLM 20230511
.. Reviewed by TechComms 20230516
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ documentation will be updated accordingly.
.. list-table::
:header-rows: 0

* - pySROS release: 23.3.2
* - Document Number: 3HE 19211 AAAB TQZZA
* - pySROS release: 23.3.3
* - Document Number: 3HE 19211 AAAC TQZZA

.. Reviewed by PLM 20220621
.. Reviewed by TechComms 20220624
Expand Down
2 changes: 1 addition & 1 deletion pysros/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

__all__ = ("management", "exceptions", "wrappers", "pprint", )

Expand Down
2 changes: 1 addition & 1 deletion pysros/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from .exceptions import *
from .exceptions import make_exception
Expand Down
2 changes: 1 addition & 1 deletion pysros/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

__all__ = ("SrosMgmtError", "InvalidPathError", "ModelProcessingError", "InternalError", "SrosConfigConflictError", "ActionTerminatedIncompleteError", "JsonDecodeError", "XmlDecodeError", )

Expand Down
2 changes: 1 addition & 1 deletion pysros/identifier.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import re

Expand Down
2 changes: 1 addition & 1 deletion pysros/management.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import base64
import contextlib
Expand Down
2 changes: 1 addition & 1 deletion pysros/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import locale
Expand Down
2 changes: 1 addition & 1 deletion pysros/model_builder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import xml.parsers.expat
Expand Down
2 changes: 1 addition & 1 deletion pysros/model_path.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from typing import Dict, Iterable

Expand Down
2 changes: 1 addition & 1 deletion pysros/model_walker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import contextlib
import copy
Expand Down
2 changes: 1 addition & 1 deletion pysros/pprint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from .wrappers import *
from .errors import *
Expand Down
2 changes: 1 addition & 1 deletion pysros/request_data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import pprint
Expand Down
2 changes: 2 additions & 0 deletions pysros/singleton.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright 2021-2023 Nokia

class _Singleton(type):
_instances = {}
def __new__(cls, *args, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion pysros/tokenizer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import collections
import re
Expand Down
2 changes: 1 addition & 1 deletion pysros/wrappers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import operator

Expand Down
2 changes: 1 addition & 1 deletion pysros/yang_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import base64

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

setup(
name='pysros',
version='23.3.2',
version='23.3.3',
packages=['pysros'],
url='https://www.nokia.com',
license='Copyright 2021 Nokia. License available in the LICENSE.md file.',
license='Copyright 2021-2023 Nokia. License available in the LICENSE.md file.',
author='Nokia',
author_email='',
description='Python for the Nokia Service Router Operating Systems (pySROS)',
Expand Down

0 comments on commit 2c37de5

Please sign in to comment.