Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# stata_kernel

[![Build Status](https://travis-ci.org/kylebarron/stata_kernel.svg?branch=master)](https://travis-ci.org/kylebarron/stata_kernel) [![Downloads](https://pepy.tech/badge/stata-kernel)](https://pepy.tech/project/stata-kernel) [![Downloads/Month](https://pepy.tech/badge/stata-kernel/month)](https://pepy.tech/project/stata-kernel)
[![Buid Status](https://github.com/kylebarron/stata_kernel/actions/workflows/test.yml/badge.svg)](https://github.com/kylebarron/stata_kernel/actions/workflows/test.yml) [![Downloads](https://pepy.tech/badge/stata-kernel)](https://pepy.tech/project/stata-kernel) [![Downloads/Month](https://pepy.tech/badge/stata-kernel/month)](https://pepy.tech/project/stata-kernel)

`stata_kernel` is a Jupyter kernel for Stata; It works on Windows, macOS, and
Linux.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stata_kernel"
version = "1.14.0"
version = "1.14.1"
description = "A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
authors = [
"Kyle Barron <kylebarron2@gmail.com>",
Expand Down Expand Up @@ -59,7 +59,7 @@ requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"

[tool.bumpver]
current_version = "1.14.0"
current_version = "1.14.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit = true
tag = true
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.14.0
current_version = 1.14.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion stata_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""An example Jupyter kernel"""

__version__ = '1.14.0'
__version__ = '1.14.1'
2 changes: 1 addition & 1 deletion stata_kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class StataKernel(Kernel):
implementation = 'stata_kernel'
implementation_version = '1.14.0'
implementation_version = '1.14.1'
language = 'stata'
language_info = {
'name': 'stata',
Expand Down