Skip to content

Commit 92b3bd7

Browse files
committed
release v0.1.1
1 parent 0277d4e commit 92b3bd7

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

doc/source/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ def get_version():
6060
"""
6161
check_cmake_version()
6262

63-
cmake_script = os.path.join(os.pardir, os.pardir, 'cmake', 'modules',
63+
cmake_script = os.path.join('cmake', 'modules',
6464
'print_version.cmake')
6565
out = subprocess.check_output(['cmake', '-P', cmake_script],
66+
cwd=os.path.join(os.pardir, os.pardir),
6667
stderr=subprocess.STDOUT)
6768
version_str = out.decode().strip()
6869
return version_str
@@ -86,6 +87,7 @@ def get_version():
8687
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
8788
# ones.
8889
extensions = [
90+
'sphinx.ext.extlinks',
8991
'sphinx.ext.intersphinx',
9092
'sphinx.ext.mathjax',
9193
'breathe'

doc/source/release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Release Notes
44
=============
55

6+
v0.1.1 (22 August 2018)
7+
-----------------------
8+
9+
- Fix version (:issue:`29`).
10+
11+
612
v0.1.0 (21 August 2018)
713
-----------------------
814

0 commit comments

Comments
 (0)