Skip to content

Commit

Permalink
Bump version: 1.5.12 → 1.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpyle committed Oct 2, 2024
1 parent 0264776 commit 51b2749
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.5.12
current_version = 1.5.13
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.5.12
1.5.13
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.5.12"
__version__ = "1.5.13"
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.5.12',
version='1.5.13',
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.5.12"
__version__ = "1.5.13"
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.5.12',
'docassemble==1.5.13',
"3to2==1.1.1",
"aiohappyeyeballs==2.3.5",
"aiohttp==3.10.3",
Expand Down Expand Up @@ -243,7 +243,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
]

setup(name='docassemble.base',
version='1.5.12',
version='1.5.13',
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.5.12"
__version__ = "1.5.13"
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.5.12',
version='1.5.13',
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.5.12',
'docassemble.base==1.5.12',
'docassemble==1.5.13',
'docassemble.base==1.5.13',
"googledrivedownloader==0.4",
"ics==0.7.2",
"matplotlib==3.9.1.post1"
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.5.12"
__version__ = "1.5.13"
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.5.12
1.5.13
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.5.12'
da_version = '1.5.13'
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.5.12',
'docassemble.base==1.5.12',
'docassemble.demo==1.5.12',
'docassemble==1.5.13',
'docassemble.base==1.5.13',
'docassemble.demo==1.5.13',
"3to2==1.1.1",
"acme==2.11.0",
"aiohappyeyeballs==2.3.5",
Expand Down Expand Up @@ -306,7 +306,7 @@ def read(fname):
]

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

0 comments on commit 51b2749

Please sign in to comment.