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
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
DOCKER_TAG_LATEST="latest"
fi

# Generate docker tags
# Generate Docker tags
IMAGE_NAME_WITH_TAG_VERSION="${{ env.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${PACKAGE_VERSION}"
IMAGE_NAME_WITH_TAG_LATEST="${{ env.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${DOCKER_TAG_LATEST}"

Expand Down Expand Up @@ -98,7 +98,8 @@ jobs:
shell: bash
run: |
set -x
sudo apt-get -y install twine
python -m pip install --upgrade pip setuptools wheel build
pip install twine
pip install -r requirements-build.txt
python -m build
twine check dist/*
Expand Down
21 changes: 9 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,41 +1,38 @@
[project]
name = "pygitver"
version = "0.1.3"
version = "0.2.0"
authors = [
{ name="Yurii Puchkov", email="panpuchkov@gmail.com" },
]
license = {text = "GNU General Public License v3 (GPLv3)"}
description = "Manages Git Tag versions and generates ChangeLog"
keywords = ["git tag", "version", "versions", "conventional commit", "semver", "changelog", "changelogs"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["git tag", "version", "versions", "conventional commit", "semver", "changelog", "changelogs"]
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"Jinja2==3.1.2"
]


[build-system]
requires = ["setuptools>=63", "wheel"]
build-backend = "setuptools.build_meta"

urls = { "Homepage" = "https://github.com/panpuchkov/pygitver" }

[project.scripts]
pygitver = "pygitver.pygitver:main"

[metadata]
url = "https://github.com/panpuchkov/pygitver"

[build-system]
requires = ["hatchling==1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"


[tool.setuptools.packages.find]
where = ["src"]


[tool.setuptools.package-data]
"*" = ["*"]
2 changes: 1 addition & 1 deletion src/pygitver/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class GitError(Exception):


class Git:
__version__ = "0.1.3"
__version__ = "0.2.0"

@staticmethod
def _cmd(command: str) -> str:
Expand Down