Skip to content

Commit 78176c7

Browse files
author
Alec Delaney
committed
Update version string
1 parent 19051a4 commit 78176c7

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

adafruit_rsa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
3232
__date__ = "2018-09-16"
3333
# __version__ = '4.0.0'
34-
__version__ = "0.0.0-auto.0"
34+
__version__ = "0.0.0+auto.0"
3535
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"

adafruit_rsa/_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
pass
2525

2626

27-
__version__ = "0.0.0-auto.0"
27+
__version__ = "0.0.0+auto.0"
2828
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2929

3030
MAX_INT = sys.maxsize

adafruit_rsa/asn1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
except ImportError as err:
1919
raise ImportError("Usage of asn1.py requires pyasn1 library") from err
2020

21-
__version__ = "0.0.0-auto.0"
21+
__version__ = "0.0.0+auto.0"
2222
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2323

2424

adafruit_rsa/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
except ImportError:
1818
pass
1919

20-
__version__ = "0.0.0-auto.0"
20+
__version__ = "0.0.0+auto.0"
2121
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2222

2323

adafruit_rsa/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
except ImportError:
2222
pass
2323

24-
__version__ = "0.0.0-auto.0"
24+
__version__ = "0.0.0+auto.0"
2525
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2626

2727

adafruit_rsa/key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
except ImportError:
4545
pass
4646

47-
__version__ = "0.0.0-auto.0"
47+
__version__ = "0.0.0+auto.0"
4848
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
4949

5050
# pylint: disable=invalid-name, useless-object-inheritance, redefined-builtin, no-name-in-module, too-few-public-methods

adafruit_rsa/machine_size.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
except ImportError:
2323
pass
2424

25-
__version__ = "0.0.0-auto.0"
25+
__version__ = "0.0.0+auto.0"
2626
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2727

2828
MAX_INT = sys.maxsize

adafruit_rsa/pem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
except ImportError:
2121
pass
2222

23-
__version__ = "0.0.0-auto.0"
23+
__version__ = "0.0.0+auto.0"
2424
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2525

2626

adafruit_rsa/pkcs1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def read(self, blocksize: int) -> Union[bytes, str]:
4949
except ImportError:
5050
pass
5151

52-
__version__ = "0.0.0-auto.0"
52+
__version__ = "0.0.0+auto.0"
5353
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
5454

5555
# ASN.1 codes that describe the hash algorithm used.

adafruit_rsa/prime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
except ImportError:
2525
pass
2626

27-
__version__ = "0.0.0-auto.0"
27+
__version__ = "0.0.0+auto.0"
2828
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2929

3030
__all__ = ["getprime", "are_relatively_prime"]

adafruit_rsa/randnum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from adafruit_rsa import common, transform
1818
from adafruit_rsa._compat import byte
1919

20-
__version__ = "0.0.0-auto.0"
20+
__version__ = "0.0.0+auto.0"
2121
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
2222

2323

adafruit_rsa/transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
except ImportError:
2626
pass
2727

28-
__version__ = "0.0.0-auto.0"
28+
__version__ = "0.0.0+auto.0"
2929
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RSA.git"
3030

3131

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requires = [
1212
[project]
1313
name = "adafruit-circuitpython-rsa"
1414
description = "RSA implementation based on python-rsa"
15-
version = "0.0.0-auto.0"
15+
version = "0.0.0+auto.0"
1616
readme = "README.rst"
1717
authors = [
1818
{name = "Adafruit Industries", email = "[email protected]"}

0 commit comments

Comments
 (0)