This repository was archived by the owner on Apr 9, 2025. It is now read-only.
File tree 6 files changed +42
-2
lines changed
6 files changed +42
-2
lines changed Original file line number Diff line number Diff line change
1
+ Changelog
2
+ =========
3
+
4
+ This page shows all the changes done on each version.
5
+
6
+
7
+ Version 0.8b1
8
+ -------------
9
+
10
+ * Move from TravisCI to CircleCI
11
+ * Use Read the Docs' Embed APIv3
12
+ * Stop adding ``data- `` attributes to HTML nodes
13
+ * Do not require ``hoverxref_project `` and ``hoverxref_version `` defined anymore
14
+ * Simplify code by removing ``HoverXRefHTMLTranslatorMixin `` override required and utils functions to get xref data
15
+ * Add new config ``hoverxref_sphinx_version `` used to send to Embed APIv3
16
+ * Update all Python requirements
17
+ * Remove via Javascript the ``title= `` property on Intersphinx references
18
+ * Support for ``glossary ``/``term `` added
19
+ * Support for ``sphinxcontrib-bibtex `` added
20
+ * Improve documentation to show examples of documentation not hosted on Read the Docs
21
+ * Use regular expressions on tests to allow partial matching when required
Original file line number Diff line number Diff line change @@ -16,3 +16,5 @@ include hoverxref/_static/js/micromodal.min.js
16
16
include hoverxref/_static/css/micromodal.css
17
17
include hoverxref/_static/css/sphinx_material.css
18
18
include hoverxref/_static/css/sphinx_rtd_theme.css
19
+
20
+ prune tests
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ Badges:
86
86
usage
87
87
configuration
88
88
development
89
+ releasing
89
90
90
91
91
92
.. toctree ::
Original file line number Diff line number Diff line change
1
+ Releasing a new version
2
+ =======================
3
+
4
+ These are the steps needed to release a new version:
5
+
6
+ #. Increment the version in ``hoverxerf/__init__.py ``
7
+ #. Update the ``CHANGELOG.rst ``
8
+ #. Commit the changes: ``git commit -m "Release $NEW_VERSION" ``
9
+ #. Tag the release in git: ``git tag $NEW_VERSION ``
10
+ #. Push the tag to GitHub: ``git push --tags origin ``
11
+ #. Upload the package to PyPI::
12
+
13
+ $ rm -rf dist/ build/
14
+ $ pip install twine build
15
+ $ python -m build --wheel --sdist
16
+ $ twine upload dist/*
Original file line number Diff line number Diff line change 1
- version = '0.7b1 '
1
+ version = '0.8b1 '
Original file line number Diff line number Diff line change 13
13
description = 'Sphinx extension to embed content in a tooltip on xref hover' ,
14
14
url = 'https://github.com/readthedocs/sphinx-hoverxref' ,
15
15
license = 'MIT' ,
16
- packages = setuptools .find_packages (),
16
+ packages = setuptools .find_packages (exclude = [ 'common' , 'tests' ] ),
17
17
long_description = long_description ,
18
18
long_description_content_type = 'text/x-rst' ,
19
19
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments