From f2bda5d11dc92564ca840292b24caee4f8e24c89 Mon Sep 17 00:00:00 2001 From: Charlie Stanley Date: Fri, 15 Jan 2021 10:29:27 -0800 Subject: [PATCH] Update github URL in setup.py to point to dapr/mechanical-markdown --- README.md | 2 +- mechanical_markdown/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 30fb51d..bb590ec 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Mechanical Markdown -[![codecov](https://codecov.io/gh/wcs1only/mechanical-markdown/branch/main/graph/badge.svg)](https://codecov.io/gh/wcs1only/mechanical-markdown) +[![codecov](https://codecov.io/gh/dapr/mechanical-markdown/branch/main/graph/badge.svg)](https://codecov.io/gh/dapr/mechanical-markdown) If you are using markdown to create tutorials for your users, these markdown files will often be a series of shell commands that a user will copy and paste into their shell of choice, along with detailed text description of what each command is doing. diff --git a/mechanical_markdown/__init__.py b/mechanical_markdown/__init__.py index a8630b7..2e7bb74 100644 --- a/mechanical_markdown/__init__.py +++ b/mechanical_markdown/__init__.py @@ -7,6 +7,6 @@ from mechanical_markdown.recipe import Recipe as MechanicalMarkdown from mechanical_markdown.parsers import MarkdownAnnotationError -__version__ = '0.2.1' +__version__ = '0.2.2' __all__ = [MechanicalMarkdown, MarkdownAnnotationError] diff --git a/setup.py b/setup.py index 324d0b8..1881842 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ description="Run markdown recipes as shell scripts", long_description=README, long_description_content_type="text/markdown", - url="https://github.com/wcs1only/mechanical-markdown", + url="https://github.com/dapr/mechanical-markdown", author="Charlie Stanley", author_email="Charlie.Stanley@microsoft.com", license="MIT",