From 585a0a5d9adb3debebc7769a332c3e3d6c55d528 Mon Sep 17 00:00:00 2001 From: czechbol Date: Thu, 11 Mar 2021 01:03:45 +0100 Subject: [PATCH] Bump to v0.2.0 --- docs/source/conf.py | 2 +- mathcrypto/__init__.py | 3 ++- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 7743281..0ca9368 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Adam Ludes" # The full version, including alpha/beta/rc tags -release = "0.1.2" +release = "0.2.0" # -- General configuration --------------------------------------------------- diff --git a/mathcrypto/__init__.py b/mathcrypto/__init__.py index 10196fd..8be0301 100644 --- a/mathcrypto/__init__.py +++ b/mathcrypto/__init__.py @@ -1,4 +1,5 @@ from .funcs import MathFunctions # noqa: F401 from .groups import MultiplicativeGroup # noqa: F401 +from .crypto import DHCryptosystem, DHCracker, Primes # noqa: F401 -__version__ = "0.1.2" +__version__ = "0.2.0" diff --git a/setup.cfg b/setup.cfg index d7a4006..1719b85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = mathcrypto -version = 0.1.2 +version = 0.2.0 description = A library of useful funtions used in cryptography. For learning purposes only. long_description = file: README.md