Skip to content

Commit

Permalink
Bump version: 1.3.19 → 1.3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpyle committed Jan 25, 2022
1 parent fbbbe56 commit a31e3eb
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.19
current_version = 1.3.20
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion Docker/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.19
1.3.20
2 changes: 1 addition & 1 deletion docassemble/docassemble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__version__ = "1.3.19"
__version__ = "1.3.20"
2 changes: 1 addition & 1 deletion docassemble/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name='docassemble',
version='1.3.19',
version='1.3.20',
python_requires='>=3.8',
description=('The namespace package for the docassemble system.'),
long_description=read("README.md"),
Expand Down
2 changes: 1 addition & 1 deletion docassemble_base/docassemble/base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__version__ = "1.3.19"
__version__ = "1.3.20"
4 changes: 2 additions & 2 deletions docassemble_base/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
return out

install_requires = [
'docassemble==1.3.19',
'docassemble==1.3.20',
"3to2==1.1.1",
"alembic==1.6.2",
"astunparse==1.6.3",
Expand Down Expand Up @@ -198,7 +198,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
]

setup(name='docassemble.base',
version='1.3.19',
version='1.3.20',
python_requires='>=3.8',
description=('The base components of the docassemble system.'),
long_description=read("README.md"),
Expand Down
2 changes: 1 addition & 1 deletion docassemble_demo/docassemble/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.19"
__version__ = "1.3.20"
6 changes: 3 additions & 3 deletions docassemble_demo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
return out

setup(name='docassemble.demo',
version='1.3.19',
version='1.3.20',
python_requires='>=3.8',
description=('A demonstration package for docassemble.'),
long_description=read("README.md"),
Expand All @@ -58,8 +58,8 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
packages=find_packages(),
namespace_packages = ['docassemble'],
install_requires = [
'docassemble==1.3.19',
'docassemble.base==1.3.19',
'docassemble==1.3.20',
'docassemble.base==1.3.20',
'googledrivedownloader==0.4'
],
zip_safe = False,
Expand Down
2 changes: 1 addition & 1 deletion docassemble_webapp/docassemble/webapp/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.19"
__version__ = "1.3.20"
2 changes: 1 addition & 1 deletion docassemble_webapp/docassemble/webapp/data/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.19
1.3.20
2 changes: 1 addition & 1 deletion docassemble_webapp/docassemble/webapp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from docassemble.webapp.app_object import app
from docassemble.base.config import daconfig
import docassemble.webapp.database
da_version = '1.3.19'
da_version = '1.3.20'
app.config['DA_VERSION'] = da_version
app.config['APP_NAME'] = daconfig.get('appname', 'docassemble')
app.config['BRAND_NAME'] = daconfig.get('brandname', daconfig.get('appname', 'docassemble'))
Expand Down
8 changes: 4 additions & 4 deletions docassemble_webapp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ def read(fname):
'enum34==1.1.8'
]
install_requires = [
'docassemble==1.3.19',
'docassemble.base==1.3.19',
'docassemble.demo==1.3.19',
'docassemble==1.3.20',
'docassemble.base==1.3.20',
'docassemble.demo==1.3.20',
"3to2==1.1.1",
"airtable-python-wrapper==0.15.2",
"alembic==1.6.2",
Expand Down Expand Up @@ -251,7 +251,7 @@ def read(fname):
]

setup(name='docassemble.webapp',
version='1.3.19',
version='1.3.20',
python_requires='>=3.8',
description=('The web application components of the docassemble system.'),
long_description=read("README.md"),
Expand Down

0 comments on commit a31e3eb

Please sign in to comment.