13 lines
366 B
Python
13 lines
366 B
Python
# When bumping the C library version, reset the POST count to 0
|
|
|
|
__wolfssl_version__ = "v5.7.2-stable"
|
|
|
|
# We're using implicit post releases [PEP 440] to bump package version
|
|
# while maintaining the C library version intact for better reference.
|
|
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
|
|
#
|
|
# MAJOR.MINOR.BUILD-POST
|
|
|
|
__version__ = "5.7.2-0"
|
|
|