Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ticoneva committed Jan 19, 2023
1 parent 90dfda0 commit 9702a02
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ Requires Stata 17 or above.
Consider [stata_kernel](https://github.com/kylebarron/stata_kernel) instead if you have an
older version of Stata.

**Note: the newest update of Stata 17 comes with a new version of pystata that breaks compatibility
with `pystata-kernel`. Please consider using [`nbstata`](https://github.com/hugetim/nbstata) instead,
**Note: Starting with version 0.3.0, `pystata-kernel` will be updated once every six months.
If new features and timely updates are important to you,
please consider using [`nbstata`](https://github.com/hugetim/nbstata),
which is further along in development.**

### Installation
Expand Down
2 changes: 1 addition & 1 deletion pystata-kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.2.5'
__version__ = '0.3.0'

from .kernel import PyStataKernel
4 changes: 2 additions & 2 deletions pystata-kernel/kernel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
pystata-kernel
Version: 0.2.5
Version: 0.3.0
A simple Jupyter kernel based on pystata.
Requires Stata 17 and stata_setup.
'''
Expand All @@ -13,7 +13,7 @@

class PyStataKernel(IPythonKernel):
implementation = 'pystata-kernel'
implementation_version = '0.2.5'
implementation_version = '0.3.0'
language = 'stata'
language_version = '17'
language_info = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='pystata-kernel',
version='0.2.5',
version='0.3.0',
packages=['pystata-kernel'],
package_data={'pystata-kernel': ['logo-64x64.png']},
description='A simple Jupyter kernel for Stata based on pystata',
Expand Down

0 comments on commit 9702a02

Please sign in to comment.