Skip to content

Commit a429d09

Browse files
committed
Update version to 0.3.1
1 parent d482df5 commit a429d09

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff 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+
1114
Added
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

2125
Fixes
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.
@@ -96,7 +100,8 @@ Fixes
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

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'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 ---------------------------------------------------

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.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",
@@ -21,8 +21,9 @@
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={

0 commit comments

Comments
 (0)