Skip to content

Commit 7f7071a

Browse files
CI: Cherry-pick release 6.0.1 release-notes and version bump to devel (#6609) (#6632)
1 parent 17f8754 commit 7f7071a

10 files changed

Lines changed: 41 additions & 6 deletions

File tree

ansible_collections/arista/avd/CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Arista.Avd Release Notes
44

55
.. contents:: Topics
66

7+
v6.0.1
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
Release 6.0.1 - See documentation on avd.arista.com for details.
14+
15+
Minor Changes
16+
-------------
17+
18+
- Bump: grpclib>=0.4.8 (#6590) by @ClausHolbechArista in https://github.com/aristanetworks/avd/pull/6605
19+
720
v6.0.0
821
======
922

ansible_collections/arista/avd/changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,4 @@ plugins:
125125
than group_vars or host_vars
126126
name: global_vars
127127
version_added: 4.0.0
128-
version: 6.0.0
128+
version: 6.0.1

ansible_collections/arista/avd/changelogs/changelog.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4214,3 +4214,13 @@ releases:
42144214
name: validate_inputs
42154215
namespace: ''
42164216
release_date: '2026-02-19'
4217+
6.0.1:
4218+
changes:
4219+
minor_changes:
4220+
- 'Bump: grpclib>=0.4.8 (#6590) by @ClausHolbechArista in https://github.com/aristanetworks/avd/pull/6605'
4221+
release_summary: 'Release 6.0.1 - See documentation on avd.arista.com for details.
4222+
4223+
'
4224+
fragments:
4225+
- v6.0.1.yml
4226+
release_date: '2026-02-25'
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
release_summary: |
2+
Release 6.0.1 - See documentation on avd.arista.com for details.
3+
minor_changes:
4+
- |-
5+
Bump: grpclib>=0.4.8 (#6590) by @ClausHolbechArista in https://github.com/aristanetworks/avd/pull/6605

ansible_collections/arista/avd/galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace: arista
1010
name: avd
1111

1212
# The version of the collection. Must be compatible with semantic versioning
13-
version: 6.0.0
13+
version: 6.1.0-dev0
1414
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515
readme: README.md
1616

ansible_collections/arista/avd/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ distlib>=0.3.9
1010
grpclib>=0.4.8
1111
jinja2>=3.0
1212
netaddr>=0.7.19
13-
pyavd==6.0.0
13+
pyavd==6.1.0.dev0
1414
pyavd-utils==0.0.2
1515
python-socks[asyncio]>=2.7.2
1616
pyyaml>=6.0.0

docs/release-notes/6.x.x.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ The AVD project follows Semantic Versioning. For the best user experience, we re
1818

1919
For additional information, please see [versioning](../versioning/semantic-versioning.md).
2020

21+
## Release 6.0.1
22+
23+
### Changes to requirements
24+
25+
- Python requirements:
26+
- PyAVD now supports `grpclib>=0.4.8` instead of the pinned `grpclib==0.4.9`.
27+
2128
## Release 6.0.0
2229

2330
### Changes to requirements

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ exclude_also = [
257257

258258
[tool.bumpversion]
259259

260-
current_version = "6.0.0"
260+
current_version = "6.1.0-dev0"
261261

262262
allow_dirty = true
263263
commit = false

python-avd/pyavd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
__author__ = "Arista Networks"
1919
__copyright__ = "Copyright 2023-2026 Arista Networks"
2020
__license__ = "Apache 2.0"
21-
__version__ = "6.0.0"
21+
__version__ = "6.1.0.dev0"
2222

2323
__all__ = [
2424
"get_avd_facts",

python-avd/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ version = {attr = "pyavd.__version__"}
8585
[dependency-groups]
8686
# helping pdm generate the flat list of requirements in pre-commit
8787
self = [
88-
"pyavd==6.0.0"
88+
"pyavd==6.1.0.dev0"
8989
]
9090

9191
[tool.black]

0 commit comments

Comments
 (0)