Skip to content

Commit

Permalink
24.3.2 released
Browse files Browse the repository at this point in the history
  • Loading branch information
SRBuilds committed Apr 25, 2024
1 parent e38cb31 commit 496211e
Show file tree
Hide file tree
Showing 20 changed files with 31 additions and 23 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-2023 Nokia.
Copyright 2021-2024 Nokia.

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

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
author = 'Nokia'

# The full version, including alpha/beta/rc tags
version = '24.3.1'
release = '24.3.1'
version = '24.3.2'
release = '24.3.2'


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 8 additions & 0 deletions docs/source/features/24.3.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release 24.3
************

24.3.2
######

* No additional features

.. Reviewed by PLM 20240403
.. Reviewed by TechComms 20240403
24.3.1
######

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

* - pySROS release: 24.3.1
* - Document Number: 3HE 20087 AAAA TQZZA
* - pySROS release: 24.3.2
* - Document Number: 3HE 20087 AAAB TQZZA

.. Reviewed by PLM 20240219
.. Reviewed by TechComms 20240227
.. Reviewed by PLM 20240403
.. Reviewed by TechComms 20240403
.. toctree::
:maxdepth: 2
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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 Nokia

from .exceptions import (ActionTerminatedIncompleteError, InternalError,
InvalidPathError, JsonDecodeError,
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-2023 Nokia
# Copyright 2021-2024 Nokia

__all__ = (
"SrosMgmtError", "InvalidPathError", "ModelProcessingError",
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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 Nokia

import copy
from collections import defaultdict
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-2023 Nokia
# Copyright 2021-2024 Nokia

from typing import 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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 Nokia

from .errors import *
from .errors import make_exception
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-2023 Nokia
# Copyright 2021-2024 Nokia

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

class _Singleton(type):
_instances = {}
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-2023 Nokia
# Copyright 2021-2024 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-2023 Nokia
# Copyright 2021-2024 Nokia

import operator
import collections
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-2023 Nokia
# Copyright 2021-2024 Nokia

import base64
from abc import ABC, abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pysros',
version='24.3.1',
version='24.3.2',
packages=['pysros'],
url='https://www.nokia.com',
license='Copyright 2021-2024 Nokia. License available in the LICENSE.md file.',
Expand Down

0 comments on commit 496211e

Please sign in to comment.