Skip to content

Commit d55dc59

Browse files
authored
Merge pull request #4 from DevArqf/v0.3-Implementation
V0.3 implementation
2 parents 16aeabd + 95c8276 commit d55dc59

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/upload-artifact@v4
3636
with:
3737
name: release-dists
38-
path: dist/
38+
path: dist/*
3939

4040
pypi-publish:
4141
needs: build
@@ -52,9 +52,9 @@ jobs:
5252
uses: actions/download-artifact@v4
5353
with:
5454
name: release-dists
55-
path: dist/
55+
path: dist/*
5656

5757
- name: Publish to PyPI
5858
uses: pypa/gh-action-pypi-publish@release/v1
5959
with:
60-
packages-dir: dist/
60+
packages-dir: dist/*

debugbuddy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"
22

33
def __getattr__(name):
44
if name == "ErrorParser":

debugbuddy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"

debugbuddy/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_version():
2727
from debugbuddy import __version__
2828
return __version__
2929
except (ImportError, AttributeError):
30-
return "0.3.3"
30+
return "0.3.4"
3131

3232
def _detect_all_errors(file_path):
3333
all_errors = []

debugbuddy/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_version():
1212
from debugbuddy import __version__
1313
return __version__
1414
except (ImportError, AttributeError):
15-
return "0.3.3"
15+
return "0.3.4"
1616

1717
@click.group(invoke_without_command=True)
1818
@click.option('--version', '-v', is_flag=True, help='Show version')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
setup(
77
name="debugbuddy-cli",
8-
version="0.3.3",
8+
version="0.3.4",
99
license='MIT',
1010
author="DevArqf",
1111
author_email="[email protected]",
1212
description="Your terminal's debugging companion - instant error explanations",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
1515
url="https://github.com/DevArqf/DeBugBuddy",
16-
download_url="https://github.com/DevArqf/DeBugBuddy/archive/refs/tags/v0.3.3.tar.gz",
16+
download_url="https://github.com/DevArqf/DeBugBuddy/archive/refs/tags/v0.3.4.tar.gz",
1717
keywords = ['python', 'debugging', 'cli'],
1818
packages=find_packages(),
1919
classifiers=[

0 commit comments

Comments
 (0)