Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
genedan committed Sep 14, 2020
1 parent 8a40a3b commit 773be75
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
#
import os
from os.path import relpath, dirname
from tmval.constants import BUILD_VERSION
import sys
sys.path.insert(0, os.path.abspath('..'))

# -- Project information -----------------------------------------------------

project = 'TmVal Documentation'
copyright = '2020, Gene Dan, FCAS, MAAA, CSPA'
release = 'v0.0.9'
release = 'v' + BUILD_VERSION
author = 'Gene Dan, FCAS, MAAA, CSPA'


Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import setuptools

from tmval.constants import BUILD_VERSION

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="tmval",
version="0.0.9",
version=BUILD_VERSION,
author="Gene Dan",
author_email="genedan@gmail.com",
description="Time Value of Money",
Expand Down
2 changes: 2 additions & 0 deletions tmval/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
BUILD_VERSION = '0.0.10'

FORMAL_PATTERNS = {
'interest': 'Effective Interest',
'i': 'Effective Interest',
Expand Down

0 comments on commit 773be75

Please sign in to comment.