Skip to content

Commit

Permalink
Bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Dec 25, 2023
1 parent 086ddc7 commit 6e59f12
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ repos:
hooks:
- id: pyupgrade
args: [--py37-plus]
# - repo: https://github.com/psf/black
# rev: 21.9b0
# hooks:
# - id: black
- repo: https://github.com/psf/black
rev: 21.9b0
hooks:
- id: black
# - repo: https://github.com/PyCQA/isort
# rev: 5.10.1
# hooks:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Revision 5.0.32, released 2023-12-25
------------------------------------

- Added timeout and retries to Slim class.

Revision 5.0.31, released 2023-12-09
------------------------------------

Expand Down
6 changes: 6 additions & 0 deletions Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ poetry env use 3.12
```bash
poetry version patch
```

## Build Documentation

```bash
poetry run make html -C docs
```
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# The short X.Y version.
version = '5.0'
# The full version, including alpha/beta/rc tags.
release = '5.0.31'
release = '5.0.32'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 4 additions & 6 deletions docs/source/docs/pysnmp-hlapi-tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ to SNMP engine LCD.
UsmUserData(userName='testuser', authKey=<AUTHKEY>, privKey=<PRIVKEY>)
PySNMP supports MD5 and SHA message authentication algorithms, DES,
AES128/192/256 and 3DES encryption algoritms.
AES128/192/256 and 3DES encryption algorithms.

For sake of simplicity, let's use SNMPv2. Although completely
insecure, it's still the most popular SNMP version in use.
Expand Down Expand Up @@ -197,7 +197,7 @@ MIB resolution means the service of MIB object name into OID
transformation or vice versa.
The :py:class:`~pysnmp.smi.rfc1902.ObjectType` class instance
represents *OBJECT-TYPE* SMI constuct in PySNMP. ObjectType is a
represents *OBJECT-TYPE* SMI construct in PySNMP. ObjectType is a
container object that references ObjectIdentity and SNMP
type instances. As a Python object it looks like a tuple of
(OID, value).
Expand Down Expand Up @@ -241,9 +241,7 @@ in `SNMPv2-MIB <https://mibs.pysnmp.com/asn1/SNMPv2-MIB>`_ module.
By default PySNMP will search your local filesystem for ASN.1 MIB files
you refer to. It can also be configured to automatically download
them from remote hosts, as
:doc:`shown </examples/hlapi/asyncore/sync/manager/cmdgen/mib-tweaks>`
in the examples. We maintain a
them from remote hosts. We maintain a
`collection <https://github.com/lextudio/mibs.snmplabs.com/tree/master/asn1>`_ of ASN.1 MIB modules
that you can use in your SNMP projects.
Expand Down Expand Up @@ -325,7 +323,7 @@ In PySNMP parlance:
'1.3.6.1.2.1.2.2.1.2.123'
Some SNMP tables are indexed by many indices. Each of these indices
become parts of OID concatinated to each other and ultimately to
become parts of OID concatenated to each other and ultimately to
MIB object OID.
From semantic standpoint, each index reflects an important and
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysnmp-lextudio"
version = "5.0.31"
version = "5.0.32"
description = ""
authors = ["Ilya Etingof <[email protected]>", "Lex Li <[email protected]>"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion pysnmp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# http://www.python.org/dev/peps/pep-0396/
__version__ = '5.0.31'
__version__ = '5.0.32'
# another variable is required to prevent semantic release from updating version in more than one place
main_version = __version__
# backward compatibility
Expand Down

0 comments on commit 6e59f12

Please sign in to comment.