Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.0 #128

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Version 0.2.0
-------------

:Date: Jan 24, 2023

This version adds support for sphinx 6.x,
and makes JQuery optional for animations.

* @stsewd: CI: fix tests (#127)
* @dependabot[bot]: Bump decode-uri-component from 0.2.0 to 0.2.2 (#120)
* @dependabot[bot]: Bump minimatch and gulp (#119)
* @stsewd: Refactor: don't depend on underscore.js (#116)
* @stsewd: Remove usage of jquery (#115)

Version 0.1.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
release: clean
git checkout main
git pull origin main
python setup.py sdist bdist_wheel
python -m build --sdist --wheel
python -m twine upload --sign --identity [email protected] dist/*

tag:
Expand Down
2 changes: 1 addition & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Make sure you have the latest version of these packages:

.. code-block:: bash
python -m pip install --upgrade setuptools wheel twine
python -m pip install --upgrade setuptools wheel twine build
Update the version in ``sphinx_search/__init__.py`` and ``package.json``,
and run:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "readthedocs-sphinx-search",
"version": "0.1.2",
"version": "0.2.0",
"description": "Enable search-as-you-type feature.",
"scripts": {
"build": "gulp",
Expand Down
2 changes: 1 addition & 1 deletion sphinx_search/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.2'
__version__ = '0.2.0'