From 10d7e5d9a3f0ff7f0fc24dcab14b9ea38813edf8 Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 18:53:16 +0200 Subject: [PATCH 1/7] Updates repository name --- mkdocs_markmap/__meta__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mkdocs_markmap/__meta__.py b/mkdocs_markmap/__meta__.py index d32c68f..a209672 100644 --- a/mkdocs_markmap/__meta__.py +++ b/mkdocs_markmap/__meta__.py @@ -3,5 +3,6 @@ PROJECT_VERSION: str = '2.2.2' OWNER: str = 'neatc0der' -REPOSITORY_NAME: str = f'{OWNER}/{PROJECT_NAME}' +ORGANISATION: str = 'markmap' +REPOSITORY_NAME: str = f'{ORGANISATION}/{PROJECT_NAME}' REPOSITORY_URL: str = f'https://github.com/{REPOSITORY_NAME}' From 261d2f7a6994a13ead27603ebda3ba312342ee65 Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 18:54:58 +0200 Subject: [PATCH 2/7] Bumps python dependency --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 69f5845..f755a94 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages from typing import List -from mkdocs_markmap.__meta__ import PROJECT_NAME, PROJECT_VERSION, REPOSITORY_URL +from mkdocs_markmap.__meta__ import OWNER, PROJECT_NAME, PROJECT_VERSION, REPOSITORY_URL def readme() -> str: @@ -31,10 +31,10 @@ def get_requirements(filename: str, base_dir: str = 'requirements') -> List[str] long_description_content_type='text/markdown', keywords='mkdocs python markdown markmap mindmap include', url=REPOSITORY_URL, - author='neatc0der', + author=OWNER, author_email='', license='MIT', - python_requires='>=3.6', + python_requires='>=3.7', install_requires=get_requirements('prod.txt'), classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -42,10 +42,10 @@ def get_requirements(filename: str, base_dir: str = 'requirements') -> List[str] 'Intended Audience :: Information Technology', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], packages=find_packages(exclude=['*.tests']), package_dir={ From 6597a29a7b98b1e59d1d8ea11974a30bcec7c81f Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 18:58:10 +0200 Subject: [PATCH 3/7] Bumps markmap dependency --- README.md | 4 ++-- mkdocs_markmap/defaults.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3280103..3a85b9e 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ plugins: encoding: utf-8 file_extension: .mm.md d3_version: 6.7.0 - lib_version: 0.11.6 - view_version: 0.2.6 + lib_version: 0.14.1 + view_version: 0.14.0 ``` In addition, feel free to define your favourite source urls like this: diff --git a/mkdocs_markmap/defaults.py b/mkdocs_markmap/defaults.py index c937436..7fa8677 100644 --- a/mkdocs_markmap/defaults.py +++ b/mkdocs_markmap/defaults.py @@ -14,12 +14,12 @@ class JsModuleConfig(object): ) MARKMAP_LIB: JsModuleConfig = JsModuleConfig( - version='0.11.6', + version='0.14.1', uri='https://unpkg.com/markmap-lib@{}/dist/browser/index.min.js', ) MARKMAP_VIEW: JsModuleConfig = JsModuleConfig( - version='0.2.6', + version='0.14.0', uri='https://unpkg.com/markmap-view@{}/dist/index.min.js', ) From fcbc26a25e18c7411afc3521fe7d5d6053c2c9f4 Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 19:14:37 +0200 Subject: [PATCH 4/7] Adds changelog for v2.3.0 --- changelog/v2.3.0.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 changelog/v2.3.0.md diff --git a/changelog/v2.3.0.md b/changelog/v2.3.0.md new file mode 100644 index 0000000..8843c75 --- /dev/null +++ b/changelog/v2.3.0.md @@ -0,0 +1,6 @@ +# v2.3.0 + +* Updates markmap-lib to `0.14.1` +* Updates markmap-view to `0.14.0` +* Updated python dependency to `>=3.7` +* Updates repository name to `markamp/mkdocs-markmap` From 7437bb40004b0f0eee7c6e65a19faef73d046cee Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 19:14:59 +0200 Subject: [PATCH 5/7] Bumps version to v2.3.0 --- mkdocs_markmap/__meta__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs_markmap/__meta__.py b/mkdocs_markmap/__meta__.py index a209672..13ba426 100644 --- a/mkdocs_markmap/__meta__.py +++ b/mkdocs_markmap/__meta__.py @@ -1,6 +1,6 @@ PACKAGE_NAME: str = 'mkdocs_markmap' PROJECT_NAME: str = PACKAGE_NAME.replace('_', '-') -PROJECT_VERSION: str = '2.2.2' +PROJECT_VERSION: str = '2.3.0' OWNER: str = 'neatc0der' ORGANISATION: str = 'markmap' From 2a3f324f1115355d7a028a426eae39677004ff6d Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 19:16:08 +0200 Subject: [PATCH 6/7] Updates readme with correct js urls --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a85b9e..1450192 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ In addition, feel free to define your favourite source urls like this: ```yaml extra_javascript: - https://unpkg.com/d3@6.7.0/dist/d3.min.js - - https://unpkg.com/markmap-lib@0.11.6/dist/browser/index.min.js - - https://unpkg.com/markmap-view@0.2.6/dist/index.min.js + - https://unpkg.com/markmap-lib@0.14.1/dist/browser/index.min.js + - https://unpkg.com/markmap-view@0.14.0/dist/index.min.js ``` :warning: The urls need to contain one of these keywords to be considered as deviation from default: From ee1c3f7b791dff66767b7924daf5e750bd199d72 Mon Sep 17 00:00:00 2001 From: neatc0der Date: Thu, 25 Aug 2022 19:20:04 +0200 Subject: [PATCH 7/7] Updates readme with correct repository urls --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1450192..69db882 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ > Beautiful and simple mindmaps written in markdown. -[![MIT license](https://badgen.net/github/license/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/blob/master/LICENSE) +[![MIT license](https://badgen.net/github/license/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/blob/master/LICENSE) [![PyPI](https://badgen.net/pypi/v/mkdocs-markmap)](https://pypi.org/project/mkdocs-markmap/) -[![Latest Release](https://badgen.net/github/release/neatc0der/mkdocs-markmap/latest)](https://github.com/neatc0der/mkdocs-markmap/releases/latest) -[![Open Issues](https://badgen.net/github/open-issues/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/issues) -[![Open PRs](https://badgen.net/github/open-prs/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/pulls) +[![Latest Release](https://badgen.net/github/release/markmap/mkdocs-markmap/latest)](https://github.com/markmap/mkdocs-markmap/releases/latest) +[![Open Issues](https://badgen.net/github/open-issues/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/issues) +[![Open PRs](https://badgen.net/github/open-prs/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/pulls) -This is a plugin and an extension for [mkdocs](https://github.com/mkdocs/mkdocs/) to add [markmap](https://github.com/gera2ld/markmap). +This is a plugin and an extension for [mkdocs](https://github.com/mkdocs/mkdocs/) to add [markmap](https://github.com/markmap/markmap). ## Prerequisits @@ -120,6 +120,6 @@ Usually proxies should be supported by `requests`, which is used for downloading Some of the development approaches are based on implementations provided by the following projects: -* [markmap](https://github.com/gera2ld/markmap) (key feature of this project) +* [markmap](https://github.com/markmap/markmap) (key feature of this project) * [markdown-include](https://github.com/cmacmackin/markdown-include) (basis for extension support) * [mkdocs-mermaid2-plugin](https://github.com/fralau/mkdocs-mermaid2-plugin) (basis for plugin support)