diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..4bbe884 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,11 @@ +## Describe your changes + +## Issue ticket number and link + +## Checklist before requesting a review +- [ ] Replace the existing tag using + + ``` + git tag | xargs git tag -d + git tag + ``` diff --git a/.gitignore b/.gitignore index de0eca3..1cb62b4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ tests/lcov out custom .pytest_cache +dist/* docs/example/* !docs/example/example_two_maps_diagram.png diff --git a/README.md b/README.md index 0deb38e..9ad1fcc 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ Tool for generating diagrams that show the mapping of regions in memory, specifc - Many additional settings are available in the JSON input. Please see the [schema](mm/schema.json) for more information. - ### Usage: ``` diff --git a/dist/mmdiagram-0.0.1-py3-none-any.whl b/dist/mmdiagram-0.0.1-py3-none-any.whl deleted file mode 100644 index 2695729..0000000 Binary files a/dist/mmdiagram-0.0.1-py3-none-any.whl and /dev/null differ diff --git a/dist/mmdiagram-0.0.1.tar.gz b/dist/mmdiagram-0.0.1.tar.gz deleted file mode 100644 index f715012..0000000 Binary files a/dist/mmdiagram-0.0.1.tar.gz and /dev/null differ diff --git a/pyproject.toml b/pyproject.toml index 4b529dc..c5f339d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mmdiagram" -version = "0.0.1" +version = "0.1" authors = [ { name="Chris Sutton", email="chrisjsutton@gmail.com" }, ]