Skip to content

Commit 43d2369

Browse files
Bumped version to 1.0.2.post41
Updated vendor constant enumerations at Sat Jun 28 10:11:01 UTC 2025. The following files have been changed: pcapkit/const/ipv6/option.py pcapkit/const/ipv6/router_alert.py
1 parent bef2cb3 commit 43d2369

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3
1+
0

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@
124124
]
125125

126126
#: version number
127-
__version__ = '1.0.2.post40'
127+
__version__ = '1.0.2.post41'

pcapkit/const/ipv6/option.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ class Option(IntEnum):
3636
#: Tunnel Encapsulation Limit [:rfc:`2473`]
3737
Tunnel_Encapsulation_Limit = 0x04
3838

39-
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][RFC-ietf-6man-
40-
#: deprecate-router-alert-13]
39+
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][:rfc:`9805`]
4140
Router_Alert = 0x05
4241

4342
#: Quick-Start [:rfc:`4782`][RFC Errata 2034]

pcapkit/const/ipv6/router_alert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,6 @@ def _missing_(cls, value: 'int') -> 'RouterAlert':
261261
#: Unassigned
262262
return extend_enum(cls, 'Unassigned_%d' % value, value)
263263
if 65503 <= value <= 65534:
264-
#: Reserved [RFC-ietf-6man-deprecate-router-alert-13]
264+
#: Reserved [:rfc:`9805`]
265265
return extend_enum(cls, 'Reserved_%d' % value, value)
266266
return super()._missing_(value)

0 commit comments

Comments
 (0)