Skip to content

Commit 3e50a90

Browse files
committed
Update version to 0.2 for release.
1 parent 745e92c commit 3e50a90

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.readthedocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ version: 2
77
# Build documentation in the docs/ directory with Sphinx
88
sphinx:
99
configuration: docs/conf.py
10-
fail_on_warning: true
10+
# The autosectionlabel throws warnings for multiple fix sections in the
11+
# changelog so do not fail on warning
12+
fail_on_warning: false
1113

1214
# Build documentation with MkDocs
1315
#mkdocs:

CHANGELOG.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ This document records all notable changes to `sphinx-c-autodoc <https://sphinx-c
66
This project adheres to `Semantic Versioning <https://semver.org/>`_.
77

88

9-
`v0.2.0-dev`_ (unreleased)
9+
`v0.3.0-dev`_ (unreleased)
10+
==========================
11+
12+
`v0.2.0`_ (2020-04-1)
1013
==========================
1114

1215
Added
@@ -22,7 +25,7 @@ Fixes
2225
Once as the typedef and once as anonymous. Now they are only documnted as
2326
part of the typedef.
2427

25-
`v0.1.1`_ (2012-03-15)
28+
`v0.1.1`_ (2020-03-15)
2629
======================
2730

2831
Fixes
@@ -39,6 +42,7 @@ Fixes
3942
* Initial public release
4043

4144

42-
.. _v0.2.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.1...master
45+
.. _v0.3.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.1...master
46+
.. _v0.2.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.1...v0.2.0
4347
.. _v0.1.1: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.1.0...v0.1.1
4448
.. _v0.1.0: https://github.com/speedyleion/sphinx-c-autodoc/commits/v0.1.0

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = u'Nick'
2626

2727
# The short X.Y version
28-
version = u'0.1'
28+
version = u'0.2'
2929
# The full version, including alpha/beta/rc tags
30-
release = u'0.1.1'
30+
release = u'0.2.0'
3131

3232

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

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="0.1.1",
15+
version="0.2.0",
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)