File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " stata_kernel"
3- version = " 1.14.1 "
3+ version = " 1.14.2 "
44description = " A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
55authors = [
66 " Kyle Barron <kylebarron2@gmail.com>" ,
@@ -26,6 +26,7 @@ classifiers = [
2626keywords = [" stata" ]
2727repository = " https://github.com/kylebarron/stata_kernel"
2828documentation = " https://kylebarron.dev/stata_kernel/"
29+ readme = " README.md"
2930
3031[tool .poetry .dependencies ]
3132python = " ^3.9.0"
@@ -59,12 +60,13 @@ requires = ["poetry-core>=1.8.1"]
5960build-backend = " poetry.core.masonry.api"
6061
6162[tool .bumpver ]
62- current_version = " 1.14.1 "
63+ current_version = " 1.14.2 "
6364version_pattern = " MAJOR.MINOR.PATCH"
6465commit = true
6566tag = true
6667commit_message = " bump version {old_version} → {new_version}"
67- tag_message = " {new_version}"
68+ tag_message = " bump version {old_version} → {new_version}"
69+ tag_template = " v{new_version}"
6870
6971[tool .bumpver .file_patterns ]
7072"setup.cfg" = [' current_version = {version}' ]
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.14.1
2+ current_version = 1.14.2
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 11"""An example Jupyter kernel"""
22
3- __version__ = '1.14.1 '
3+ __version__ = '1.14.2 '
Original file line number Diff line number Diff line change 2222
2323class StataKernel (Kernel ):
2424 implementation = 'stata_kernel'
25- implementation_version = '1.14.1 '
25+ implementation_version = '1.14.2 '
2626 language = 'stata'
2727 language_info = {
2828 'name' : 'stata' ,
You can’t perform that action at this time.
0 commit comments