File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,24 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
88`v0.4.0-dev `_ (unreleased)
99==========================
1010
11+ `v0.3.1 `_ (2020-10-24)
12+ ==========================
13+
1114Added
1215-----
1316
1417* The ``sphinx-c-apidoc `` command. This command provides users the ability to quickly
1518 build up a set of documentation files for a C directory.
1619
17- * A
18- `compilation databases <https://clang.llvm.org/docs/JSONCompilationDatabase.html >`_.
19- can now be specified with the ``c_autodoc_compilation_database `` configuration value.
20+ * Support for compile flags via a
21+ `compilation database <https://clang.llvm.org/docs/JSONCompilationDatabase.html >`_.
22+ A compilation database can now be specified with the
23+ ``c_autodoc_compilation_database `` configuration value.
2024
2125Fixes
2226-----
2327
24- * No longer passing `typedef ` to autodocumentation of types.
28+ * No longer passing `typedef ` to auto documentation of types.
2529 Previously the `typedef ` keyword was being provided to sphinx as part of the
2630 signature. This resulted in losing the ability to link to the type in html
2731 documentation.
96100* Initial public release
97101
98102
99- .. _v0.4.0-dev : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.0...master
103+ .. _v0.4.0-dev : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.1...master
104+ .. _v0.3.1 : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.0...v0.3.1
100105.. _v0.3.0 : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.2.0...v0.3.0
101106.. _v0.2.0 : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.1...v0.2.0
102107.. _v0.1.1 : https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change 2727# The short X.Y version
2828version = u'0.3'
2929# The full version, including alpha/beta/rc tags
30- release = u'0.3.0 '
30+ release = u'0.3.1 '
3131
3232
3333# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1212
1313setuptools .setup (
1414 name = "sphinx-c-autodoc" ,
15- version = "0.3.0 " ,
15+ version = "0.3.1 " ,
1616 description = "A sphinx autodoc extension for c modules" ,
1717 long_description = README ,
1818 long_description_content_type = "text/x-rst" ,
2121 packages = setuptools .find_packages ("src" ),
2222 license = "Unlicense" ,
2323 classifiers = [
24- "Development Status :: 3 - Alpha " ,
24+ "Development Status :: 4 - Beta " ,
2525 "Programming Language :: Python :: 3" ,
26+ "Framework :: Sphinx :: Extension" ,
2627 "Operating System :: OS Independent" ,
2728 ],
2829 project_urls = {
You can’t perform that action at this time.
0 commit comments