Skip to content

Commit 8679dd5

Browse files
authored
Merge pull request #41 from markmap/project-transfer
Project transfer
2 parents b31563c + ee1c3f7 commit 8679dd5

File tree

5 files changed

+25
-18
lines changed

5 files changed

+25
-18
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
> Beautiful and simple mindmaps written in markdown.
44
5-
[![MIT license](https://badgen.net/github/license/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/blob/master/LICENSE)
5+
[![MIT license](https://badgen.net/github/license/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/blob/master/LICENSE)
66
[![PyPI](https://badgen.net/pypi/v/mkdocs-markmap)](https://pypi.org/project/mkdocs-markmap/)
7-
[![Latest Release](https://badgen.net/github/release/neatc0der/mkdocs-markmap/latest)](https://github.com/neatc0der/mkdocs-markmap/releases/latest)
8-
[![Open Issues](https://badgen.net/github/open-issues/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/issues)
9-
[![Open PRs](https://badgen.net/github/open-prs/neatc0der/mkdocs-markmap)](https://github.com/neatc0der/mkdocs-markmap/pulls)
7+
[![Latest Release](https://badgen.net/github/release/markmap/mkdocs-markmap/latest)](https://github.com/markmap/mkdocs-markmap/releases/latest)
8+
[![Open Issues](https://badgen.net/github/open-issues/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/issues)
9+
[![Open PRs](https://badgen.net/github/open-prs/markmap/mkdocs-markmap)](https://github.com/markmap/mkdocs-markmap/pulls)
1010

11-
This is a plugin and an extension for [mkdocs](https://github.com/mkdocs/mkdocs/) to add [markmap](https://github.com/gera2ld/markmap).
11+
This is a plugin and an extension for [mkdocs](https://github.com/mkdocs/mkdocs/) to add [markmap](https://github.com/markmap/markmap).
1212

1313
## Prerequisits
1414

@@ -73,17 +73,17 @@ plugins:
7373
encoding: utf-8
7474
file_extension: .mm.md
7575
d3_version: 6.7.0
76-
lib_version: 0.11.6
77-
view_version: 0.2.6
76+
lib_version: 0.14.1
77+
view_version: 0.14.0
7878
```
7979
8080
In addition, feel free to define your favourite source urls like this:
8181
8282
```yaml
8383
extra_javascript:
8484
- https://unpkg.com/[email protected]/dist/d3.min.js
85-
- https://unpkg.com/markmap-lib@0.11.6/dist/browser/index.min.js
86-
- https://unpkg.com/markmap-view@0.2.6/dist/index.min.js
85+
- https://unpkg.com/markmap-lib@0.14.1/dist/browser/index.min.js
86+
- https://unpkg.com/markmap-view@0.14.0/dist/index.min.js
8787
```
8888
8989
:warning: The urls need to contain one of these keywords to be considered as deviation from default:
@@ -120,6 +120,6 @@ Usually proxies should be supported by `requests`, which is used for downloading
120120
121121
Some of the development approaches are based on implementations provided by the following projects:
122122
123-
* [markmap](https://github.com/gera2ld/markmap) (key feature of this project)
123+
* [markmap](https://github.com/markmap/markmap) (key feature of this project)
124124
* [markdown-include](https://github.com/cmacmackin/markdown-include) (basis for extension support)
125125
* [mkdocs-mermaid2-plugin](https://github.com/fralau/mkdocs-mermaid2-plugin) (basis for plugin support)

changelog/v2.3.0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# v2.3.0
2+
3+
* Updates markmap-lib to `0.14.1`
4+
* Updates markmap-view to `0.14.0`
5+
* Updated python dependency to `>=3.7`
6+
* Updates repository name to `markamp/mkdocs-markmap`

mkdocs_markmap/__meta__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
PACKAGE_NAME: str = 'mkdocs_markmap'
22
PROJECT_NAME: str = PACKAGE_NAME.replace('_', '-')
3-
PROJECT_VERSION: str = '2.2.2'
3+
PROJECT_VERSION: str = '2.3.0'
44

55
OWNER: str = 'neatc0der'
6-
REPOSITORY_NAME: str = f'{OWNER}/{PROJECT_NAME}'
6+
ORGANISATION: str = 'markmap'
7+
REPOSITORY_NAME: str = f'{ORGANISATION}/{PROJECT_NAME}'
78
REPOSITORY_URL: str = f'https://github.com/{REPOSITORY_NAME}'

mkdocs_markmap/defaults.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ class JsModuleConfig(object):
1414
)
1515

1616
MARKMAP_LIB: JsModuleConfig = JsModuleConfig(
17-
version='0.11.6',
17+
version='0.14.1',
1818
uri='https://unpkg.com/markmap-lib@{}/dist/browser/index.min.js',
1919
)
2020

2121
MARKMAP_VIEW: JsModuleConfig = JsModuleConfig(
22-
version='0.2.6',
22+
version='0.14.0',
2323
uri='https://unpkg.com/markmap-view@{}/dist/index.min.js',
2424
)
2525

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33
from typing import List
44

5-
from mkdocs_markmap.__meta__ import PROJECT_NAME, PROJECT_VERSION, REPOSITORY_URL
5+
from mkdocs_markmap.__meta__ import OWNER, PROJECT_NAME, PROJECT_VERSION, REPOSITORY_URL
66

77

88
def readme() -> str:
@@ -31,21 +31,21 @@ def get_requirements(filename: str, base_dir: str = 'requirements') -> List[str]
3131
long_description_content_type='text/markdown',
3232
keywords='mkdocs python markdown markmap mindmap include',
3333
url=REPOSITORY_URL,
34-
author='neatc0der',
34+
author=OWNER,
3535
author_email='',
3636
license='MIT',
37-
python_requires='>=3.6',
37+
python_requires='>=3.7',
3838
install_requires=get_requirements('prod.txt'),
3939
classifiers=[
4040
'Development Status :: 5 - Production/Stable',
4141
'Intended Audience :: Developers',
4242
'Intended Audience :: Information Technology',
4343
'License :: OSI Approved :: MIT License',
4444
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.6',
4645
'Programming Language :: Python :: 3.7',
4746
'Programming Language :: Python :: 3.8',
4847
'Programming Language :: Python :: 3.9',
48+
'Programming Language :: Python :: 3.10',
4949
],
5050
packages=find_packages(exclude=['*.tests']),
5151
package_dir={

0 commit comments

Comments
 (0)