Skip to content

Commit c8df2cd

Browse files
authored
Merge pull request jazzband#414 from johnthagen/4.0.0b0
Release 4.0.0b0
2 parents 7608a20 + ca53d62 commit c8df2cd

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

dbbackup/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,5 @@
22

33
import django
44

5-
VERSION = (3, 3, 0)
6-
__version__ = '.'.join([str(i) for i in VERSION])
7-
__author__ = 'Michael Shepanski'
8-
__email__ = '[email protected]'
9-
__url__ = 'https://github.com/django-dbbackup/django-dbbackup'
10-
115
if django.VERSION < (3, 2):
126
default_app_config = 'dbbackup.apps.DbbackupConfig'

docs/changelog.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Changelog
2-
=====
2+
=========
33

4-
Unreleased
5-
-----------
4+
4.0.0b0 (2021-12-19)
5+
--------------------
66

77
* Fix RemovedInDjango41Warning related to default_app_config `#413`_
88
* Add authentication database support for MongoDB `#379`_
@@ -14,6 +14,8 @@ Unreleased
1414
* Fix authentication error when postgres is password protected `#361`_
1515
* Use exclude-table-data instead of exclude-table `#363`_
1616
* Add support for exclude tables data in the command interface `#375`_
17+
* Move author and version information into setup.py to allow building package in isolated
18+
environment (e.g. with the ``build`` package). `#414`_
1719
* Documentation fixes `#341`_ `#333`_ `#349`_ `#348`_ `#337`_ `#411`_
1820

1921

@@ -61,3 +63,4 @@ Unreleased
6163
.. _`#379`: https://github.com/django-dbbackup/django-dbbackup/pull/379
6264
.. _`#411`: https://github.com/django-dbbackup/django-dbbackup/pull/411
6365
.. _`#413`: https://github.com/django-dbbackup/django-dbbackup/pull/413
66+
.. _`#414`: https://github.com/django-dbbackup/django-dbbackup/pull/414

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from pathlib import Path
44

55
from setuptools import setup, find_packages
6-
import dbbackup
76

87

98
def get_requirements():
@@ -24,16 +23,16 @@ def get_test_requirements():
2423

2524
setup(
2625
name='django-dbbackup',
27-
version=dbbackup.__version__,
28-
description=dbbackup.__doc__,
29-
author=dbbackup.__author__,
30-
author_email=dbbackup.__email__,
26+
version="4.0.0b0",
27+
description='Management commands to help backup and restore a project database and media',
28+
author='Michael Shepanski',
29+
author_email='[email protected]',
3130
long_description=project_dir.joinpath("README.rst").read_text(encoding="utf-8"),
3231
python_requires=">=3.6",
3332
install_requires=get_requirements(),
3433
tests_require=get_test_requirements(),
3534
license='BSD',
36-
url=dbbackup.__url__,
35+
url='https://github.com/django-dbbackup/django-dbbackup',
3736
keywords=keywords,
3837
packages=find_packages(),
3938
classifiers=[

0 commit comments

Comments
 (0)