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
8 changes: 5 additions & 3 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.1"
version = "1.14.2"
description = "A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
authors = [
"Kyle Barron <kylebarron2@gmail.com>",
Expand All @@ -26,6 +26,7 @@ classifiers = [
keywords = ["stata"]
repository = "https://github.com/kylebarron/stata_kernel"
documentation = "https://kylebarron.dev/stata_kernel/"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9.0"
Expand Down Expand Up @@ -59,12 +60,13 @@ requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"

[tool.bumpver]
current_version = "1.14.1"
current_version = "1.14.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit = true
tag = true
commit_message = "bump version {old_version} → {new_version}"
tag_message = "{new_version}"
tag_message = "bump version {old_version} → {new_version}"
tag_template = "v{new_version}"

[tool.bumpver.file_patterns]
"setup.cfg" = ['current_version = {version}']
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.1
current_version = 1.14.2
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.1'
__version__ = '1.14.2'
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.1'
implementation_version = '1.14.2'
language = 'stata'
language_info = {
'name': 'stata',
Expand Down