Skip to content

Commit 56b7a59

Browse files
committed
chore: Bump version to 2.0
1 parent 48b7965 commit 56b7a59

5 files changed

Lines changed: 18 additions & 8 deletions

File tree

.cruft.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/sphinx-notes/cookiecutter",
3-
"commit": "233a8daa4e276a9559975a51178f29e7079dcafd",
3+
"commit": "f61a32b45b77d86f5cec729a56a2b129cfcd23a2",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -9,7 +9,7 @@
99
"full_name": "sphinxnotes-recentupdate",
1010
"author": "Shengyu Zhang",
1111
"description": "Display recent document updates from Git in Sphinx documentation",
12-
"version": "1.1",
12+
"version": "2.0",
1313
"github_owner": "sphinx-notes",
1414
"github_repo": "recentupdate",
1515
"generated_file_header": "This file is generated from sphinx-notes/cookiecutter.",
@@ -22,7 +22,7 @@
2222
"sphinx_version": "7.0",
2323
"development_status": "5 - Production/Stable",
2424
"_template": "https://github.com/sphinx-notes/cookiecutter",
25-
"_commit": "233a8daa4e276a9559975a51178f29e7079dcafd"
25+
"_commit": "f61a32b45b77d86f5cec729a56a2b129cfcd23a2"
2626
}
2727
},
2828
"directory": null

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Version 2.x
2222
===========
2323

2424
.. version:: 2.0
25+
:date: 2026-06-22
2526
:break:
2627

2728
- The template feature is now provided by

docs/conf.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
copyright = "2025, " + author
1414

1515
# The full version, including alpha/beta/rc tags
16-
version = release = '1.1'
16+
version = release = '2.0'
1717

1818
# -- General configuration ---------------------------------------------------
1919

@@ -49,6 +49,11 @@
4949
# Keep warnings as “system message” paragraphs in the rendered documents.
5050
keep_warnings = True
5151

52+
# A list of warning codes to suppress arbitrary warning messages.
53+
suppress_warnings = [
54+
'misc.template_evaluation', # Writing evaluated template...
55+
]
56+
5257
# -- Options for HTML output -------------------------------------------------
5358

5459
# The theme to use for HTML and HTML Help pages. See the documentation for

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ Getting Started
4343

4444
.. note::
4545

46-
We assume you already have a Sphinx documentation,
46+
We assume you already have a Sphinx documentation project,
4747
if not, see `Getting Started with Sphinx`_.
4848

4949

50-
First, downloading extension from PyPI:
50+
First, download the extension from PyPI:
5151

5252
.. code-block:: console
5353
5454
$ pip install sphinxnotes-recentupdate
5555
5656
57-
Then, add the extension name to ``extensions`` configuration item in your
57+
Then, add the extension name to ``extensions`` configuration option in your
5858
:parsed_literal:`conf.py_`:
5959

6060
.. code-block:: python

docs/requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is generated from sphinx-notes/cookiecutter.
2-
32
# Documentation build dependencies.
43
# Keep these out of pyproject optional-dependencies to avoid resolver issues.
4+
55
furo
66
sphinx_copybutton
77
sphinxcontrib-gtagjs
@@ -11,6 +11,10 @@ sphinx-last-updated-by-git
1111
sphinxnotes-project
1212
sphinxnotes-comboroles
1313

14+
# NOTE: Not used by docs (docs import extension from ../src),
15+
# only to resolve its optional dependencies.
16+
sphinxnotes-recentupdate
17+
1418
# CUSTOM DOCS DEPENDENCIES START
1519
sphinxnotes-render
1620
# CUSTOM DOCS DEPENDENCIES END

0 commit comments

Comments
 (0)