From 757e9797dcaa951f3cccc9a2011cd28f73e4a553 Mon Sep 17 00:00:00 2001 From: Taka Date: Sat, 11 Jun 2022 16:57:14 +1000 Subject: [PATCH] Updated the version strings. --- asl_articles/config/constants.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(),