diff --git a/asl_articles/config/constants.py b/asl_articles/config/constants.py index 3f0fbca..41987fe 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 = "v0.1" # nb: also update setup.py +APP_VERSION = "v1.0" # 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/asl_articles/config/site.cfg.example b/asl_articles/config/site.cfg.example index 6e8b515..485c30b 100644 --- a/asl_articles/config/site.cfg.example +++ b/asl_articles/config/site.cfg.example @@ -11,5 +11,5 @@ EXTERNAL_DOCS_BASEDIR = ... ; Base directory for user files. USER_FILES_BASEDIR = ... -; Base URL for the eASLRB. +; Base URL for the eASLRB (e.g. http://localhost:5020). ASLRB_BASE_URL = ... diff --git a/setup.py b/setup.py index abd2836..6ff1be9 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def parse_requirements( fname ): setup( name = "asl-articles", - version = "0.1", # nb: also update constants.py + version = "1.0", # nb: also update constants.py description = "Searchable index of ASL articles.", license = "AGPLv3", packages = find_packages(),