Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep v1.11.0 #605

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/admin/release_notes/version_1.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# v1.11 Release Notes

## Release Overview

- Added Python 3.13 support.
- Removed Python 3.8 support.

## [v1.11.0] 2024-12

### Added
- [593](https://github.com/networktocode/netutils/pull/593) Add nokia_srl to the mappers.

### Changed

- [603](https://github.com/networktocode/netutils/pull/603) Add support for Python 3.8 and add Python 3.13.

### Fixed

- [602](https://github.com/networktocode/netutils/pull/602) Fix ASA banner config parsing.
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ nav:
- Uninstall: "admin/uninstall.md"
- Release Notes:
- "admin/release_notes/index.md"
- v1.11: "admin/release_notes/version_1.11.md"
- v1.10: "admin/release_notes/version_1.10.md"
- v1.9: "admin/release_notes/version_1.9.md"
- v1.8: "admin/release_notes/version_1.8.md"
- v1.7: "admin/release_notes/version_1.7.md"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "netutils"
version = "1.10.0"
version = "1.11.0"
description = "Common helper functions useful in network automation."
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -56,7 +56,7 @@ mkdocs-python-classy = "0.1.3"

[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
include = '\.pyi?$'
exclude = '''
(
Expand Down
Loading