Skip to content

Commit

Permalink
Bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Mar 2, 2024
1 parent 125987a commit 02fca08
Show file tree
Hide file tree
Showing 8 changed files with 719 additions and 836 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ venv*
out
cache
*.log
index.*
index.*
.python-version
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Revision 1.2.0, 03-02-2024
--------------------------

- Fixed a JSON output bug.

Revision 1.1.13, 11-02-2023
---------------------------

Expand Down
13 changes: 0 additions & 13 deletions Pipfile

This file was deleted.

359 changes: 0 additions & 359 deletions Pipfile.lock

This file was deleted.

4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = "1.1"
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = "1.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1,158 changes: 700 additions & 458 deletions poetry.lock

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysmi-lextudio"
version = "1.1.13"
version = "1.2.0"
description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library."
authors = ["Ilya Etingof <[email protected]>", "Lex Li <[email protected]>"]
license = "BSD-2-Clause"
Expand Down Expand Up @@ -30,15 +30,22 @@ ply = "^3.11"
requests = "^2.26.0"


[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
Sphinx = "^4.3.0"
sphinx-sitemap = "*"
pysnmp-lextudio = "^5.0.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
black = "=22.3.0"
isort = "^5.10.1"
importlib-metadata = { version = ">=0.12", python = "<3.8" }

[tool.poetry_bumpversion.file."pysmi/__init__.py"]

[tool.poetry_bumpversion.file."docs/source/conf.py"]
search = "release = \"{current_version}\""
replace = "release = \"{new_version}\""

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Expand Down
2 changes: 1 addition & 1 deletion pysmi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# http://www.python.org/dev/peps/pep-0396/
__version__ = "1.1.13"
__version__ = "1.2.0"

0 comments on commit 02fca08

Please sign in to comment.