diff --git a/.github/workflows/bumpversion.yml b/.github/workflows/bumpversion.yml index f942be6a..bd81a491 100644 --- a/.github/workflows/bumpversion.yml +++ b/.github/workflows/bumpversion.yml @@ -15,6 +15,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - name: Create bump and changelog uses: commitizen-tools/commitizen-action@master with: diff --git a/.github/workflows/pythonpublish.yaml b/.github/workflows/pythonpublish.yaml index b678ab09..ddb43baa 100644 --- a/.github/workflows/pythonpublish.yaml +++ b/.github/workflows/pythonpublish.yaml @@ -3,7 +3,7 @@ name: Upload Python Package on: push: tags: - - '^[0-9]*' + - '*' jobs: deploy: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..e69de29b diff --git a/pyproject.toml b/pyproject.toml index ad79c89a..81a1fe17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,22 @@ [tool.poetry] name = "kstreams" version = "0.2.0" -description = "" +description = "Build simple kafka streams applications" authors = ["Marcos Schroh "] +license = "Apache-2.0" +readme = "README.md" +keywords = ["stream", "kafka", "event streaming"] +classifiers = [ + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: CPython", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Application Frameworks", + "Topic :: System :: Networking", + "Topic :: System :: Distributed Computing", + "Framework :: AsyncIO", +] [tool.poetry.dependencies] python = "^3.8" @@ -63,9 +77,9 @@ from_first = false include_trailing_comma = true [tool.commitizen] -bump_message = "BUMP: version $current_version → $new_version" version = "0.2.0" tag_format = "$version" version_files = [ "pyproject.toml:version", ] +update_changelog_on_bump = true