File tree Expand file tree Collapse file tree 5 files changed +20
-12
lines changed
Expand file tree Collapse file tree 5 files changed +20
-12
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2727# The short X.Y version
2828version = 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 ---------------------------------------------------
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sphinx-c-autodoc"
3- version = " 1.1.0 "
3+ version = " 1.1.1 "
44description = " A sphinx autodoc extension for c modules"
55authors = [" Your Name <you@example.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change 1212
1313setuptools .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" ,
You can’t perform that action at this time.
0 commit comments