Skip to content

Commit 65721f7

Browse files
committed
Update version strings to 1.0 for release
1 parent 49d9f8d commit 65721f7

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ Change Log
55
This document records all notable changes to `sphinx-c-autodoc <https://sphinx-c-autodoc.readthedocs.io/en/latest/>`_.
66
This project adheres to `Semantic Versioning <https://semver.org/>`_.
77

8-
`v0.5.0-dev`_ (unreleased)
8+
`v1.1.0-dev`_ (unreleased)
9+
==========================
10+
11+
`v1.0.0`_ (2021-09-12)
912
==========================
1013

1114
Added
1215
-----
1316

17+
* Dual licensing with MIT license.
18+
1419
* Support for global compilation args.
1520
Compilation args can now be specified with the
1621
``c_autodoc_compilation_args`` configuration value.
@@ -146,7 +151,8 @@ Fixes
146151
* Initial public release
147152

148153

149-
.. _v0.5.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.4.0...master
154+
.. _v1.0.0-dev: https://github.com/speedyleion/sphinx-c-autodoc/compare/v1.0.0...master
155+
.. _v1.0.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.4.0...v1.0.0
150156
.. _v0.4.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.1...v0.4.0
151157
.. _v0.3.1: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.3.0...v0.3.1
152158
.. _v0.3.0: https://github.com/speedyleion/sphinx-c-autodoc/compare/v0.2.0...v0.3.0

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Speedyleion
3+
Copyright (c) 2019 Nick
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sphinx-c-autodoc
33

44
|build-status| |coverage| |black| |docs|
55

6-
Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org).
6+
Dual-licensed under MIT or the `UNLICENSE <https://unlicense.org>`_.
77

88
.. inclusion_begin
99

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
# -- Project information -----------------------------------------------------
2222

2323
project = u'Sphinx C Autodoc Extension'
24-
copyright = u'2019-2020, Nick'
24+
copyright = u'2019-2021, Nick'
2525
author = u'Nick'
2626

2727
# The short X.Y version
28-
version = u'0.4'
28+
version = u'1.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = u'0.4.0'
30+
release = u'1.0.0'
3131

3232

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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,20 @@
1212

1313
setuptools.setup(
1414
name="sphinx-c-autodoc",
15-
version="0.4.0",
15+
version="1.0.0",
1616
description="A sphinx autodoc extension for c modules",
1717
long_description=README,
1818
long_description_content_type="text/x-rst",
1919
url="https://sphinx-c-autodoc.readthedocs.io/en/latest/",
2020
package_dir={"":"src"},
2121
packages=setuptools.find_packages("src"),
22-
license="Unlicense",
2322
classifiers=[
24-
"Development Status :: 4 - Beta",
23+
"Development Status :: 5 - Production/Stable",
2524
"Programming Language :: Python :: 3",
2625
"Framework :: Sphinx :: Extension",
2726
"Operating System :: OS Independent",
27+
"License :: OSI Approved :: The Unlicense (Unlicense)",
28+
"License :: OSI Approved :: MIT License",
2829
],
2930
project_urls={
3031
"Source": "https://github.com/speedyleion/sphinx-c-autodoc",

0 commit comments

Comments
 (0)