Skip to content

Commit

Permalink
Update version and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hardbyte committed Feb 8, 2017
1 parent 16164e5 commit 19ab97d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.2.2'
release = '1.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions phe/paillier.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ def from_totient(public_key, totient):
and the modulus is defined as modulus = p * q
Args:
public_key (:class `PaillierPublicKey`): The corresponding public
public_key (PaillierPublicKey): The corresponding public
key
totient (int): the totient of the modulus
Returns:
the PaillierPrivateKey that corresponds to the inputs
the :class:`PaillierPrivateKey` that corresponds to the inputs
Raises:
ValueError: if the given totient is not the totient of the modulus
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def find_version():
# Note the version is also in the docs/conf.py file
# We use semantic versioning - semver.org
return "1.2.3"
return "1.3.0"


setup(
Expand Down

0 comments on commit 19ab97d

Please sign in to comment.