Skip to content

Commit

Permalink
bump version v0.19.0; merged PR fix nb name color/hover
Browse files Browse the repository at this point in the history
  • Loading branch information
dunovank committed Feb 27, 2018
1 parent 61fba71 commit 5945965
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### Release Notes

#### **v0.19.0**
- merged [PR #190](https://github.com/dunovank/jupyter-themes/pull/190/files) submitted by [tnilanon](https://github.com/tnilanon)

#### **v0.18.9**
- added glob import to jtplot

Expand Down
4 changes: 2 additions & 2 deletions jupyterthemes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
__all__ = [os.path.basename(f)[:-3] for f in modules]

major = 0
minor = 18
patch = 9
minor = 19
patch = 0

__version__ = '.'.join([str(v) for v in [major, minor, patch]])

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

pkgname = 'jupyterthemes'
major = 0
minor = 18
patch = 9
minor = 19
patch = 0
version = '.'.join([str(v) for v in [major, minor, patch]])
url = 'https://github.com/dunovank/jupyter-themes'
download_url = '/'.join([url, 'tarball', 'v' + version])
Expand Down

0 comments on commit 5945965

Please sign in to comment.