Skip to content

Commit

Permalink
Bump version: 1.4.108 → 1.4.109
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpyle committed Jul 13, 2024
1 parent 07d3943 commit 53e067b
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.4.108
current_version = 1.4.109
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.4.108
1.4.109
2 changes: 1 addition & 1 deletion docassemble/docassemble/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__import__('pkg_resources').declare_namespace(__name__)
__version__ = "1.4.108"
__version__ = "1.4.109"
2 changes: 1 addition & 1 deletion docassemble/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()

setup(name='docassemble',
version='1.4.108',
version='1.4.109',
python_requires='>=3.9',
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.4.108"
__version__ = "1.4.109"
4 changes: 2 additions & 2 deletions docassemble_base/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
return out

install_requires = [
'docassemble==1.4.108',
'docassemble==1.4.109',
"3to2==1.1.1",
"aiohttp==3.9.4",
"aiohttp-retry==2.8.3",
Expand Down Expand Up @@ -240,7 +240,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
]

setup(name='docassemble.base',
version='1.4.108',
version='1.4.109',
python_requires='>=3.9',
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.4.108"
__version__ = "1.4.109"
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.4.108',
version='1.4.109',
python_requires='>=3.9',
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.4.108',
'docassemble.base==1.4.108',
'docassemble==1.4.109',
'docassemble.base==1.4.109',
"googledrivedownloader==0.4",
"ics==0.7.2",
"matplotlib==3.8.2"
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.4.108"
__version__ = "1.4.109"
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.4.108
1.4.109
2 changes: 1 addition & 1 deletion docassemble_webapp/docassemble/webapp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from docassemble.webapp.app_object import app
from docassemble.base.config import daconfig
import docassemble.webapp.database
da_version = '1.4.108'
da_version = '1.4.109'
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 @@ -10,9 +10,9 @@ def read(fname):
'enum34==1.1.10'
]
install_requires = [
'docassemble==1.4.108',
'docassemble.base==1.4.108',
'docassemble.demo==1.4.108',
'docassemble==1.4.109',
'docassemble.base==1.4.109',
'docassemble.demo==1.4.109',
"3to2==1.1.1",
"acme==2.8.0",
"aiohttp==3.9.4",
Expand Down Expand Up @@ -297,7 +297,7 @@ def read(fname):
]

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

0 comments on commit 53e067b

Please sign in to comment.