Skip to content

Commit c506621

Browse files
committed
Bump to v1.1.0
1 parent 8ea4daa commit c506621

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,14 @@ sphinx-inlinecode
3131

3232
**Example**
3333

34+
3435
.. image:: https://raw.githubusercontent.com/TDKorn/sphinx-inlinecode/main/docs/source/_static/example.png
3536
:alt: embedded code block added by sphinx-inlinecode
3637

38+
39+
40+
41+
3742
|
3843
3944
Installation

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
repo = project
3939

4040
# Package Info
41-
# pkg = pkg_resources.require(project)[0]
42-
# pkg_name = pkg.get_metadata('top_level.txt').strip()
41+
pkg = pkg_resources.require(project)[0]
42+
pkg_name = pkg.get_metadata('top_level.txt').strip()
4343

4444
# Simplify things by using the installed version
45-
version = '0.0.1' #pkg.version
45+
version = pkg.version
4646
release = version
4747

4848
# ======================== General configuration ============================

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sphinx-inlinecode
3232
.. rubric:: Example
3333

3434

35-
.. only:: readme or pypi
35+
.. only:: not html
3636

3737
.. image:: /_static/example.png
3838
:alt: embedded code block added by sphinx-inlinecode

sphinx_inlinecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from bs4 import BeautifulSoup, Tag, NavigableString
77

88

9-
__version__ = "1.0.1"
9+
__version__ = "1.1.0"
1010
__author__ = 'Adam Korn <hello@dailykitten.net>'
1111

1212

0 commit comments

Comments
 (0)