Skip to content

Commit

Permalink
Bump version to 1.1.1 for packaging fix (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
speedyleion authored Dec 21, 2022
1 parent 5caebe1 commit 6916434
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
`v1.2.0-dev`_ (unreleased)
==========================

`v1.1.1`_ (2022-12-21)
==========================

Fixed
-----

* Packaging
* Incorrectly pinned Sphinx, Clang, BeautifulSoup4
* Was missing `sphinx-c-apidoc` entry point

`v1.1.0`_ (2022-12-20)
==========================

Expand Down Expand Up @@ -159,7 +169,8 @@ Fixes
* Initial public release


.. _v1.2.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.0...master
.. _v1.2.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.1...master
.. _v1.1.1: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.1.0...v1.1.1
.. _v1.1.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.0.0...v1.1.0
.. _v1.0.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.4.0...v1.0.0
.. _v0.4.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.1...v0.4.0
Expand Down
13 changes: 5 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,13 @@ Could be referenced in documentation as:
With the resulting documentation output of:

.. c:function:: int my_adding_function(int a, int b)
.. code-block:: rst
.. c:function:: int my_adding_function(int a, int b)
A simple function that adds.
A simple function that adds.
:param a: The initial value
:param b: The value to add to `a`
:returns: The sum of `a` and `b`
:param a: The initial value
:param b: The value to add to `a`
:returns: The sum of `a` and `b`
.. _autodoc: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html
.. _Sphinx: https://www.sphinx-doc.org/en/master/index.html
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = u'1.1'
# The full version, including alpha/beta/rc tags
release = u'1.1.0'
release = u'1.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sphinx-c-autodoc"
version = "1.1.0"
version = "1.1.1"
description = "A sphinx autodoc extension for c modules"
authors = ["Your Name <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setuptools.setup(
name="sphinx-c-autodoc",
version="1.1.0",
version="1.1.1",
description="A sphinx autodoc extension for c modules",
long_description=README,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 6916434

Please sign in to comment.