Skip to content

Commit 19ab97d

Browse files
committed
Update version and docs
1 parent 16164e5 commit 19ab97d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ def __getattr__(cls, name):
9595
# built documents.
9696
#
9797
# The short X.Y version.
98-
version = '1.1'
98+
version = '1.3'
9999
# The full version, including alpha/beta/rc tags.
100-
release = '1.2.2'
100+
release = '1.3.0'
101101

102102
# The language for content autogenerated by Sphinx. Refer to documentation
103103
# for a list of supported languages.

phe/paillier.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,12 @@ def from_totient(public_key, totient):
239239
and the modulus is defined as modulus = p * q
240240
241241
Args:
242-
public_key (:class `PaillierPublicKey`): The corresponding public
242+
public_key (PaillierPublicKey): The corresponding public
243243
key
244244
totient (int): the totient of the modulus
245245
246246
Returns:
247-
the PaillierPrivateKey that corresponds to the inputs
247+
the :class:`PaillierPrivateKey` that corresponds to the inputs
248248
249249
Raises:
250250
ValueError: if the given totient is not the totient of the modulus

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
def find_version():
2424
# Note the version is also in the docs/conf.py file
2525
# We use semantic versioning - semver.org
26-
return "1.2.3"
26+
return "1.3.0"
2727

2828

2929
setup(

0 commit comments

Comments
 (0)