Skip to content

Commit 8dc1906

Browse files
authored
Update build badge. (#444)
* Manually bumped to 1.12.3 * Bump version: 1.12.3 → 1.13.0 * Updated build status badge * bump version 1.14.0 → 1.14.1
1 parent 38f4b1f commit 8dc1906

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# stata_kernel
22

3-
[![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)
3+
[![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)
44

55
`stata_kernel` is a Jupyter kernel for Stata; It works on Windows, macOS, and
66
Linux.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "stata_kernel"
3-
version = "1.14.0"
3+
version = "1.14.1"
44
description = "A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
55
authors = [
66
"Kyle Barron <[email protected]>",
@@ -59,7 +59,7 @@ requires = ["poetry-core>=1.8.1"]
5959
build-backend = "poetry.core.masonry.api"
6060

6161
[tool.bumpver]
62-
current_version = "1.14.0"
62+
current_version = "1.14.1"
6363
version_pattern = "MAJOR.MINOR.PATCH"
6464
commit = true
6565
tag = true

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.14.0
2+
current_version = 1.14.1
33
commit = True
44
tag = True
55

stata_kernel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""An example Jupyter kernel"""
22

3-
__version__ = '1.14.0'
3+
__version__ = '1.14.1'

stata_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class StataKernel(Kernel):
2424
implementation = 'stata_kernel'
25-
implementation_version = '1.14.0'
25+
implementation_version = '1.14.1'
2626
language = 'stata'
2727
language_info = {
2828
'name': 'stata',

0 commit comments

Comments
 (0)