diff --git a/asl_articles/config/constants.py b/asl_articles/config/constants.py index 41987fe..b50ee9f 100644 --- a/asl_articles/config/constants.py +++ b/asl_articles/config/constants.py @@ -3,7 +3,7 @@ import os APP_NAME = "ASL Articles" -APP_VERSION = "v1.0" # nb: also update setup.py +APP_VERSION = "v1.1" # nb: also update setup.py APP_DESCRIPTION = "Searchable index of ASL articles." BASE_DIR = os.path.abspath( os.path.join( os.path.split(__file__)[0], ".." ) ) diff --git a/setup.py b/setup.py index fadd3aa..58aa4fc 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def parse_requirements( fname ): setup( name = "asl-articles", - version = "1.0", # nb: also update constants.py + version = "1.1", # nb: also update constants.py description = "Searchable index of ASL articles.", license = "AGPLv3", packages = find_packages(),