Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
minor changes. bumpversion 0.9.4.1 → 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sv0 committed Dec 20, 2018
1 parent f987fa9 commit e6b3f65
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
5 changes: 2 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
commit = True
current_version = 0.9.4.1
commit = False
current_version = 0.9.5
files = django_markdown/__init__.py
tag = True
tag_name = {new_version}
Expand All @@ -9,4 +9,3 @@ tag_name = {new_version}

[bumpversion:file:README.rst]
parse = Django-Markdown v. (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ help:
.PHONY: clean
# target: clean - Clean repo
clean:
@rm -rf build dist docs/_build
@rm -rf build dist docs/_build django_markdown_app.egg-info
find $(CURDIR) -name "*.pyc" -delete
find $(CURDIR) -name "*.orig" -delete
find $(CURDIR) -name "__pycache__" | xargs rm -rf

find $(CURDIR) -name "django_markdown_app-?.?.?.dist-info" | xargs rm -rf

# ==============
# Bump version
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django-Markdown v. 0.9.4.1
##########################
Django-Markdown v. 0.9.5
########################

.. _description:

Expand Down
2 changes: 1 addition & 1 deletion django_markdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
""" Django-Markdown supports markdown in Django. """

__version__ = "0.9.4.1"
__version__ = "0.9.5"
__project__ = "django-markdown-app"
__author__ = "Kirill Klenov <[email protected]>"
__license__ = "GNU LGPL"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django>=2.0
Django>=2.0,<2.2
markdown>=2.6.11
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _read(fname):
author="Kirill Klenov",
author_email="[email protected]",
maintainer="Slavik Svyrydiuk",
maintainer_email="[email protected]",
maintainer_email="[email protected]",
url="https://github.com/sv0/django-markdown-app",
download_url=download_url,

Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ commands=flake8 django_markdown

[testenv:py35-d20]
deps =
django==2.0.8
django==2.0.9
{[testenv]deps}

[testenv:py35-d21]
deps =
django==2.1.3
django==2.1.4
{[testenv]deps}

[testenv:py36-d20]
deps =
django==2.0.8
django==2.0.9
{[testenv]deps}

[testenv:py36-d21]
deps =
django==2.1.3
django==2.1.4
{[testenv]deps}

[testenv:cov]
Expand Down

0 comments on commit e6b3f65

Please sign in to comment.