Skip to content

Commit 862c860

Browse files
authored
Add readme for poetry publish (#445)
* Manually bumped to 1.12.3 * Bump version: 1.12.3 → 1.13.0 * Specified readme in pyproject.toml * Debugging tags in poetry * Debugging tags in poetry * bump version 1.14.1 → 1.14.2
1 parent 8dc1906 commit 862c860

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "stata_kernel"
3-
version = "1.14.1"
3+
version = "1.14.2"
44
description = "A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
55
authors = [
66
"Kyle Barron <kylebarron2@gmail.com>",
@@ -26,6 +26,7 @@ classifiers = [
2626
keywords = ["stata"]
2727
repository = "https://github.com/kylebarron/stata_kernel"
2828
documentation = "https://kylebarron.dev/stata_kernel/"
29+
readme = "README.md"
2930

3031
[tool.poetry.dependencies]
3132
python = "^3.9.0"
@@ -59,12 +60,13 @@ requires = ["poetry-core>=1.8.1"]
5960
build-backend = "poetry.core.masonry.api"
6061

6162
[tool.bumpver]
62-
current_version = "1.14.1"
63+
current_version = "1.14.2"
6364
version_pattern = "MAJOR.MINOR.PATCH"
6465
commit = true
6566
tag = true
6667
commit_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}']

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.1
2+
current_version = 1.14.2
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.1'
3+
__version__ = '1.14.2'

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.1'
25+
implementation_version = '1.14.2'
2626
language = 'stata'
2727
language_info = {
2828
'name': 'stata',

0 commit comments

Comments
 (0)