Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit c8cb912

Browse files
authored
Release 0.2.0 (#128)
1 parent 5432999 commit c8cb912

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Version 0.2.0
2+
-------------
3+
4+
:Date: Jan 24, 2023
5+
6+
This version adds support for sphinx 6.x,
7+
and makes JQuery optional for animations.
8+
9+
* @stsewd: CI: fix tests (#127)
10+
* @dependabot[bot]: Bump decode-uri-component from 0.2.0 to 0.2.2 (#120)
11+
* @dependabot[bot]: Bump minimatch and gulp (#119)
12+
* @stsewd: Refactor: don't depend on underscore.js (#116)
13+
* @stsewd: Remove usage of jquery (#115)
14+
115
Version 0.1.2
216
-------------
317

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
release: clean
22
git checkout main
33
git pull origin main
4-
python setup.py sdist bdist_wheel
4+
python -m build --sdist --wheel
55
python -m twine upload --sign --identity [email protected] dist/*
66

77
tag:

docs/development.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Make sure you have the latest version of these packages:
5050

5151
.. code-block:: bash
5252
53-
python -m pip install --upgrade setuptools wheel twine
53+
python -m pip install --upgrade setuptools wheel twine build
5454
5555
Update the version in ``sphinx_search/__init__.py`` and ``package.json``,
5656
and run:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "readthedocs-sphinx-search",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"description": "Enable search-as-you-type feature.",
55
"scripts": {
66
"build": "gulp",

sphinx_search/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.2'
1+
__version__ = '0.2.0'

0 commit comments

Comments
 (0)