Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mfaafm committed Dec 17, 2019
1 parent 5dcd570 commit 723e06b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -46,9 +46,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/dasher

.. |commits-since| image:: https://img.shields.io/github/commits-since/mfaafm/dasher/v0.3.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/mfaafm/dasher/v0.3.1.svg
:alt: Commits since latest release
:target: https://github.com/mfaafm/dasher/compare/v0.3.0...master
:target: https://github.com/mfaafm/dasher/compare/v0.3.1...master



Expand Down Expand Up @@ -97,7 +97,7 @@ Creating a simple, interactive dashboard with a nice layout is as easy as this:
The resulting dashboard looks like this:

.. image:: https://raw.githubusercontent.com/mfaafm/dasher/v0.3.0/docs/images/hello_world.gif
.. image:: https://raw.githubusercontent.com/mfaafm/dasher/v0.3.1/docs/images/hello_world.gif
:alt: hello world example
:align: center

Expand All @@ -112,7 +112,7 @@ License

Free software, `MIT License`_

.. _`MIT License`: https://raw.githubusercontent.com/mfaafm/dasher/v0.3.0/LICENSE
.. _`MIT License`: https://raw.githubusercontent.com/mfaafm/dasher/v0.3.1/LICENSE

Development
===========
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -20,7 +20,7 @@
year = "2019"
author = "Martijn Arts"
copyright = "{0}, {1}".format(year, author)
version = release = "0.3.0"
version = release = "0.3.1"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name="dasher",
version="0.3.0",
version="0.3.1",
license="MIT",
description="Generate interactive plotly dash dashboards in an instant",
long_description="%s\n%s"
Expand Down
2 changes: 1 addition & 1 deletion src/dasher/__init__.py
Expand Up @@ -2,6 +2,6 @@
from .app import Dasher
from .base import CustomWidget

__version__ = "0.3.0"
__version__ = "0.3.1"

__all__ = ["Dasher", "Api", "CustomWidget"]

0 comments on commit 723e06b

Please sign in to comment.