Skip to content

Commit 225fcf8

Browse files
committed
Pull the doc version number from splunklib.__version__ (thanks Itay!)
1 parent df10be9 commit 225fcf8

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
### Features
66

7-
* Support for IPv6 - it is now possible to connect to a Splunk instance
8-
listening on an IPv6 address.
97
* Improvements to entity state management
108
* Improvements to usability of entity collections
119
* Support for collection paging - collections now support the paging arguments:
@@ -21,7 +19,9 @@
2119
* Support for saved searches:
2220
- Added Service.saved_searches + units
2321
- Added examples/saved_searches.py
24-
* Sphinx based SDK API docs build and improved source code docstrings.
22+
* Sphinx based SDK docs and improved source code docstrings.
23+
* Support for IPv6 - it is now possible to connect to a Splunk instance
24+
listening on an IPv6 address.
2525

2626
### Breaking changes
2727

docs/conf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
import sys, os
1515

16+
import splunklib
17+
1618
# If extensions (or modules to document with autodoc) are in another directory,
1719
# add these directories to sys.path here. If the directory is relative to the
1820
# documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -48,9 +50,9 @@
4850
# built documents.
4951
#
5052
# The short X.Y version.
51-
version = '0.8.0'
53+
version = splunklib.__version__
5254
# The full version, including alpha/beta/rc tags.
53-
release = '0.8.0'
55+
release = splunklib.__version__
5456

5557
# The language for content autogenerated by Sphinx. Refer to documentation
5658
# for a list of supported languages.

0 commit comments

Comments
 (0)