From 70f44bb6e87ff15f0b2763d6802433189ec7ebb0 Mon Sep 17 00:00:00 2001 From: Isaac Muse Date: Tue, 28 Apr 2020 08:36:39 -0600 Subject: [PATCH] Prep for 3.6.2 release (#84) --- docs/src/markdown/changelog.md | 5 +++++ mkdocs.yml | 6 ++---- st3/mdpopups/__init__.py | 2 +- st3/mdpopups/version.py | 2 +- tox.ini | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/src/markdown/changelog.md b/docs/src/markdown/changelog.md index 1ebf3a9..9c70fcd 100644 --- a/docs/src/markdown/changelog.md +++ b/docs/src/markdown/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 3.6.2 + +- **FIX**: Sublime Text 4 no longer supports `cmd` and `args` in HTML sheets. Additionally, version 4074 will be + required to get it working. + ## 3.6.1 - **FIX**: Color adjusters with `+` and `-` operator must have a space after the operator. diff --git a/mkdocs.yml b/mkdocs.yml index 3fdbbff..abf4c11 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -4,9 +4,7 @@ repo_url: https://github.com/facelessuser/sublime-markdown-popups edit_uri: tree/master/docs/src/markdown site_description: Popup tooltips for Sublime generated with Markdown. copyright: | - Copyright © 2015 - 2020 Isaac Muse -
emoji provided free by - Twemoji + Copyright © 2015 - 2020 Isaac Muse docs_dir: docs/src/markdown theme: @@ -110,4 +108,4 @@ plugins: - git-revision-date-localized - mkdocs_pymdownx_material_extras - minify: - minify_html: true \ No newline at end of file + minify_html: true diff --git a/st3/mdpopups/__init__.py b/st3/mdpopups/__init__.py index 9f1e020..3424969 100644 --- a/st3/mdpopups/__init__.py +++ b/st3/mdpopups/__init__.py @@ -30,7 +30,7 @@ except Exception: bs4 = None -HTML_SHEET_SUPPORT = int(sublime.version()) >= 4065 +HTML_SHEET_SUPPORT = int(sublime.version()) >= 4074 DEFAULT_CSS = 'Packages/mdpopups/mdpopups_css/default.css' OLD_DEFAULT_CSS = 'Packages/mdpopups/css/default.css' diff --git a/st3/mdpopups/version.py b/st3/mdpopups/version.py index c02340a..bdc302c 100644 --- a/st3/mdpopups/version.py +++ b/st3/mdpopups/version.py @@ -1,6 +1,6 @@ """Version.""" -_version_info = (3, 6, 1) +_version_info = (3, 6, 2) __version__ = '.'.join([str(x) for x in _version_info]) diff --git a/tox.ini b/tox.ini index 8069942..ebe166a 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ commands= [testenv:documents] deps= - mkdocs_pymdownx_material_extras==1.0b11 + mkdocs_pymdownx_material_extras==1.0 mkdocs-git-revision-date-localized-plugin mkdocs-minify-plugin pyspelling