diff --git a/.github/workflows/agreements.yaml b/.github/workflows/agreements.yaml deleted file mode 100644 index 1684d47..0000000 --- a/.github/workflows/agreements.yaml +++ /dev/null @@ -1,45 +0,0 @@ -name: "CLA Assistant" -on: - issue_comment: - types: [created] - pull_request_target: - types: [opened, closed, synchronize] - -jobs: - ContributorLicenseAgreement: - runs-on: ubuntu-latest - steps: - - name: "CLA Assistant" - if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' - uses: cla-assistant/github-action@v2.6.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PERSONAL_ACCESS_TOKEN: ${{ secrets.PAT_CLATOOL }} - with: - path-to-signatures: "signatures/version1/cla.json" - path-to-document: "https://github.com/splunk/cla-agreement/blob/main/CLA.md" # e.g. a CLA or a DCO document - branch: "main" - allowlist: dependabot[bot] - remote-organization-name: splunk - remote-repository-name: cla-agreement - CodeOfConduct: - runs-on: ubuntu-latest - steps: - - name: "COC Assistant" - if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the Code of Conduct and I hereby accept the Terms') || github.event_name == 'pull_request_target' - uses: cla-assistant/github-action@v2.6.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PERSONAL_ACCESS_TOKEN: ${{ secrets.PAT_CLATOOL }} - with: - path-to-signatures: "signatures/version1/coc.json" - path-to-document: "https://github.com/splunk/cla-agreement/blob/main/CODE_OF_CONDUCT.md" # e.g. a COC or a DCO document - branch: "main" - allowlist: dependabot[bot] - remote-organization-name: splunk - remote-repository-name: cla-agreement - custom-pr-sign-comment: "I have read the Code of Conduct and I hereby accept the Terms" - create-file-commit-message: "For example: Creating file for storing COC Signatures" - signed-commit-message: "$contributorName has signed the COC in #$pullRequestNo" - custom-notsigned-prcomment: "All contributors have NOT signed the COC Document" - custom-allsigned-prcomment: "****CLA Assistant Lite bot**** All contributors have signed the COC ✍️ ✅" diff --git a/CHANGES.rst b/CHANGES.rst index 7270e28..d3b9780 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 1.5.5, released on Oct 21, 2024 +---------------------------------------- + +- Improved BITS type support. + Revision 1.5.4, released on Oct 14, 2024 ---------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 8b5a12b..f440200 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -69,7 +69,7 @@ # The short X.Y version. version = "1.5" # The full version, including alpha/beta/rc tags. -release = "1.5.4" +release = "1.5.5" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 956bc5b..d3dc6f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysmi" -version = "1.5.4" +version = "1.5.5" description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library." authors = ["Ilya Etingof ", "LeXtudio Inc. "] license = "BSD-2-Clause" diff --git a/pysmi/__init__.py b/pysmi/__init__.py index 371948b..37d6e1e 100644 --- a/pysmi/__init__.py +++ b/pysmi/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "1.5.4" +__version__ = "1.5.5"