Skip to content

Commit 6916434

Browse files
authored
Bump version to 1.1.1 for packaging fix (#51)
1 parent 5caebe1 commit 6916434

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
88
`v1.2.0-dev`_ (unreleased)
99
==========================
1010

11+
`v1.1.1`_ (2022-12-21)
12+
==========================
13+
14+
Fixed
15+
-----
16+
17+
* Packaging
18+
* Incorrectly pinned Sphinx, Clang, BeautifulSoup4
19+
* Was missing `sphinx-c-apidoc` entry point
20+
1121
`v1.1.0`_ (2022-12-20)
1222
==========================
1323

@@ -159,7 +169,8 @@ Fixes
159169
* Initial public release
160170

161171

162-
.. _v1.2.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.0...master
172+
.. _v1.2.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.1...master
173+
.. _v1.1.1: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.0...v1.1.1
163174
.. _v1.1.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.0.0...v1.1.0
164175
.. _v1.0.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.4.0...v1.0.0
165176
.. _v0.4.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.1...v0.4.0

README.rst

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,13 @@ Could be referenced in documentation as:
3636
3737
With the resulting documentation output of:
3838

39+
.. c:function:: int my_adding_function(int a, int b)
3940
40-
.. code-block:: rst
41-
42-
.. c:function:: int my_adding_function(int a, int b)
43-
44-
A simple function that adds.
41+
A simple function that adds.
4542
46-
:param a: The initial value
47-
:param b: The value to add to `a`
48-
:returns: The sum of `a` and `b`
43+
:param a: The initial value
44+
:param b: The value to add to `a`
45+
:returns: The sum of `a` and `b`
4946
5047
.. _autodoc: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html
5148
.. _Sphinx: https://www.sphinx-doc.org/en/master/index.html

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# The short X.Y version
2828
version = u'1.1'
2929
# The full version, including alpha/beta/rc tags
30-
release = u'1.1.0'
30+
release = u'1.1.1'
3131

3232

3333
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sphinx-c-autodoc"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "A sphinx autodoc extension for c modules"
55
authors = ["Your Name <you@example.com>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.setup(
1414
name="sphinx-c-autodoc",
15-
version="1.1.0",
15+
version="1.1.1",
1616
description="A sphinx autodoc extension for c modules",
1717
long_description=README,
1818
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)