Skip to content

Commit

Permalink
updated docs for beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
czechbol committed May 6, 2021
1 parent 02ef852 commit acde1fa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Adam Ludes"

# The full version, including alpha/beta/rc tags
release = "0.2.4.beta"
release = "0.2.4.beta2"


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 8 additions & 0 deletions docs/source/mathcrypto.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,11 @@ mathcrypto.groups module
:members:
:undoc-members:
:show-inheritance:

mathcrypto.elliptic module
------------------------

.. automodule:: mathcrypto.elliptic
:members:
:undoc-members:
:show-inheritance:
3 changes: 2 additions & 1 deletion mathcrypto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .funcs import MathFunctions # noqa: F401
from .groups import MultiplicativeGroup # noqa: F401
from .crypto import DHCryptosystem, DHCracker, Primes # noqa: F401
from .elliptic import EllipticCurve # noqa: F401

__version__ = "0.2.4.beta"
__version__ = "0.2.4.beta2"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mathcrypto
version = 0.2.4.beta
version = 0.2.4.beta2

description = A library of useful funtions used in cryptography. For learning purposes only.
long_description = file: README.md
Expand Down

0 comments on commit acde1fa

Please sign in to comment.