From 7f12354970bb939ee938be1ae76674736690f2bc Mon Sep 17 00:00:00 2001 From: Sami Turcotte Date: Fri, 3 Apr 2015 01:51:34 -0400 Subject: [PATCH] Version bump --- mdx_oembed/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mdx_oembed/__init__.py b/mdx_oembed/__init__.py index 5b2871e..33ae4dc 100644 --- a/mdx_oembed/__init__.py +++ b/mdx_oembed/__init__.py @@ -2,7 +2,7 @@ from mdx_oembed.extension import OEmbedExtension -VERSION = '0.1.5' +VERSION = '0.1.6' def makeExtension(**kwargs): diff --git a/setup.py b/setup.py index 92a474b..875f102 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ except Exception: setup( name='python-markdown-oembed', - version='0.1.5', + version='0.1.6', description="Markdown extension to allow media embedding using the oEmbed " "standard.", long_description=LONG_DESCRIPTION, @@ -36,7 +36,7 @@ setup( ], install_requires=[ "python-oembed >= 0.2.1", - "Markdown >= 2.6.0", + "Markdown >= 2.6.1", ], test_suite='nose.collector',