Skip to content

Commit

Permalink
Prep for 3.6.2 release (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser authored Apr 28, 2020
1 parent dc0abcb commit 70f44bb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions docs/src/markdown/changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 2 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 &copy; 2015 - 2020 <a href="https://github.com/facelessuser">Isaac Muse</a>
<br><span class="md-footer-custom-text">emoji provided free by </span>
<a href="https://github.com/twitter/twemoji">Twemoji</a>
Copyright &copy; 2015 - 2020 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
docs_dir: docs/src/markdown
theme:
Expand Down Expand Up @@ -110,4 +108,4 @@ plugins:
- git-revision-date-localized
- mkdocs_pymdownx_material_extras
- minify:
minify_html: true
minify_html: true
2 changes: 1 addition & 1 deletion st3/mdpopups/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion st3/mdpopups/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Version."""

_version_info = (3, 6, 1)
_version_info = (3, 6, 2)
__version__ = '.'.join([str(x) for x in _version_info])


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70f44bb

Please sign in to comment.