File tree Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,17 @@ Change Log
55This document records all notable changes to `sphinx-c-autodoc <https://sphinx-c-autodoc.readthedocs.io/en/latest/ >`_.
66This 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
1114Added
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
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2019 Speedyleion
3+ Copyright (c) 2019 Nick
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2121# -- Project information -----------------------------------------------------
2222
2323project = u'Sphinx C Autodoc Extension'
24- copyright = u'2019-2020 , Nick'
24+ copyright = u'2019-2021 , Nick'
2525author = 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 ---------------------------------------------------
Original file line number Diff line number Diff line change 1212
1313setuptools .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" ,
You can’t perform that action at this time.
0 commit comments