Skip to content

Commit ee3bc41

Browse files
author
yangchoo
committed
version bump to 3.0.0, use __version__ in conf.py for docs
1 parent 0e4f56b commit ee3bc41

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## `transcriptic` Changelog
22

33
## Unreleased
4+
5+
## v3.0.0
46
Added
57
- New documentation for the new testing framework and how to write tests
68
- Added Dockerfile for running Transcriptic containers. Compatible with CI tools (e.g. Jenkins) as well

docs/conf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,16 @@ def __getattr__(cls, name):
7878
project = u'TxPy'
7979
copyright = u'2016, Max Hodak, Tali Herzka, Jeremy Apthorp, Yang Choo, Peter Lee'
8080

81+
82+
exec(open('transcriptic/version.py').read())
8183
# The version info for the project you're documenting, acts as replacement for
8284
# |version| and |release|, also used in various other places throughout the
8385
# built documents.
8486
#
8587
# The short X.Y version.
86-
version = '2.3.1'
88+
version = __version__
8789
# The full version, including alpha/beta/rc tags.
88-
release = '2.3.1'
90+
release = __version__
8991

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

transcriptic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.3.1"
1+
__version__ = "3.0.0"

0 commit comments

Comments
 (0)