Skip to content

Commit cb39401

Browse files
committed
Release 3.0.5 [ci skip]
1 parent 8f6f6c2 commit cb39401

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ to show bootstrap-datepicker in django model forms and custom forms
99
which can be configured easily for date-range selection.
1010

1111

12-
| |ci-status| |coverage.io| |maintainability| |test-coverage|
12+
| |ci-status| |docs-status| |coverage.io| |maintainability| |test-coverage|
1313
| |pyversions| |djversions| |pypi-version|
1414
| |format| |status| |license|
1515
@@ -256,6 +256,11 @@ The project was initially forked from `pbucher/django-bootstrap-datepicker <http
256256
:alt: Build Status
257257
:height: 20px
258258

259+
.. |docs-status| image:: https://readthedocs.org/projects/django-bootstrap-datepicker-plus/badge/?version=latest
260+
:target: https://django-bootstrap-datepicker-plus.readthedocs.io/en/latest/?badge=latest
261+
:alt: Documentation Status
262+
:height: 20px
263+
259264
.. |coverage.io| image:: https://coveralls.io/repos/github/monim67/django-bootstrap-datepicker-plus/badge.svg?branch=master
260265
:target: https://coveralls.io/github/monim67/django-bootstrap-datepicker-plus?branch=master
261266
:alt: Coverage Status

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# The short X.Y version
3535
version = '3.0'
3636
# The full version, including alpha/beta/rc tags
37-
release = '3.0.4'
37+
release = '3.0.5'
3838

3939

4040
# -- General configuration ---------------------------------------------------

docs/index.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ to show bootstrap-datepicker in django model forms and custom forms
1414
which can be configured easily for date-range selection.
1515

1616

17-
| |ci-status| |coverage.io| |maintainability| |test-coverage|
17+
| |ci-status| |docs-status| |coverage.io| |maintainability| |test-coverage|
1818
| |pyversions| |djversions| |pypi-version|
1919
| |format| |status| |license|
2020
@@ -59,6 +59,11 @@ Demo
5959
:alt: Build Status
6060
:height: 20px
6161

62+
.. |docs-status| image:: https://readthedocs.org/projects/django-bootstrap-datepicker-plus/badge/?version=latest
63+
:target: https://django-bootstrap-datepicker-plus.readthedocs.io/en/latest/?badge=latest
64+
:alt: Documentation Status
65+
:height: 20px
66+
6267
.. |coverage.io| image:: https://coveralls.io/repos/github/monim67/django-bootstrap-datepicker-plus/badge.svg?branch=master
6368
:target: https://coveralls.io/github/monim67/django-bootstrap-datepicker-plus?branch=master
6469
:alt: Coverage Status

setup.py

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ def readme():
88

99
setup(
1010
name='django-bootstrap-datepicker-plus',
11-
version='3.0.4',
12-
description='Bootstrap3/Bootstrap4 DatePickerInput, TimePickerInput, DateTimePickerInput, MonthPickerInput, YearPickerInput '
13-
'with date-range-picker functionality for django version 2.0.5, 1.11, 1.10 and 1.8',
11+
version='3.0.5',
12+
description='Bootstrap3/Bootstrap4 DatePickerInput, TimePickerInput, '
13+
'DateTimePickerInput, MonthPickerInput, YearPickerInput '
14+
'with date-range-picker functionality for django version '
15+
'2.1, 2.0, 1.11, 1.10 and 1.8',
1416
long_description=readme(),
1517
url='https://github.com/monim67/django-bootstrap-datepicker-plus',
1618
author='Munim Munna',
1719
author_email='monim67@yahoo.com',
1820
license='Apache License 2.0',
19-
keywords='django bootstrap date-picker time-picker datetime-picker date-range-picker',
21+
keywords='django bootstrap date-picker time-picker datetime-picker '
22+
'date-range-picker',
2023
packages=['bootstrap_datepicker_plus'],
2124
install_requires=[
2225
'django>=1.8',
@@ -41,9 +44,10 @@ def readme():
4144
'Programming Language :: Python',
4245
'Programming Language :: Python :: 3',
4346
'Framework :: Django',
44-
'Framework :: Django :: 1.8',
45-
'Framework :: Django :: 1.10',
46-
'Framework :: Django :: 1.11',
47+
'Framework :: Django :: 2.1',
4748
'Framework :: Django :: 2.0',
49+
'Framework :: Django :: 1.11',
50+
'Framework :: Django :: 1.10',
51+
'Framework :: Django :: 1.8',
4852
],
4953
)

0 commit comments

Comments
 (0)