Skip to content

Commit e587118

Browse files
Prep v1.11.0 (#605)
1 parent f950e99 commit e587118

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# v1.11 Release Notes
2+
3+
## Release Overview
4+
5+
- Added Python 3.13 support.
6+
- Removed Python 3.8 support.
7+
8+
## [v1.11.0] 2024-12
9+
10+
### Added
11+
- [593](https://github.com/networktocode/netutils/pull/593) Add nokia_srl to the mappers.
12+
13+
### Changed
14+
15+
- [603](https://github.com/networktocode/netutils/pull/603) Add support for Python 3.8 and add Python 3.13.
16+
17+
### Fixed
18+
19+
- [602](https://github.com/networktocode/netutils/pull/602) Fix ASA banner config parsing.

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ nav:
117117
- Uninstall: "admin/uninstall.md"
118118
- Release Notes:
119119
- "admin/release_notes/index.md"
120+
- v1.11: "admin/release_notes/version_1.11.md"
121+
- v1.10: "admin/release_notes/version_1.10.md"
120122
- v1.9: "admin/release_notes/version_1.9.md"
121123
- v1.8: "admin/release_notes/version_1.8.md"
122124
- v1.7: "admin/release_notes/version_1.7.md"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "netutils"
3-
version = "1.10.0"
3+
version = "1.11.0"
44
description = "Common helper functions useful in network automation."
55
authors = ["Network to Code, LLC <[email protected]>"]
66
license = "Apache-2.0"
@@ -56,7 +56,7 @@ mkdocs-python-classy = "0.1.3"
5656

5757
[tool.black]
5858
line-length = 120
59-
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
59+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
6060
include = '\.pyi?$'
6161
exclude = '''
6262
(

0 commit comments

Comments
 (0)