Skip to content

Commit

Permalink
Bumped version to 1.1.0.post3
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Aug 12 10:05:34 UTC 2023. The following files
have been changed: pcapkit/const/reg/apptype.py
  • Loading branch information
github-actions[bot] committed Aug 12, 2023
1 parent dee4803 commit 6f4b401
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@
]

#: version number
__version__ = '1.1.0.post2'
__version__ = '1.1.0.post3'
5 changes: 3 additions & 2 deletions pcapkit/const/reg/apptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -28688,8 +28688,9 @@ def __hash__(self) -> 'int':
#: [TCP] Topology Discovery
kiwin: 'AppType' = -1, 'kiwin', TransportProtocol.get('tcp')

#: [UDP] Discovery in KNX IoT Point API
knx: 'AppType' = -1, 'knx', TransportProtocol.get('udp')
#: - [TCP] KNX Discovery Protocol
#: - [UDP] Discovery in KNX IoT Point API
knx: 'AppType' = -1, 'knx', TransportProtocol.get('tcp') | TransportProtocol.get('udp')

#: [N/A] Kabira Transaction Platform
ktp: 'AppType' = -1, 'ktp', TransportProtocol.get('undefined')
Expand Down

0 comments on commit 6f4b401

Please sign in to comment.