From 85796a21e4e63bc260c29704035c7adf22ffc6ad Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sat, 17 Sep 2022 11:26:45 -0500 Subject: [PATCH 1/9] running on patch branch --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 247e013..64259f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,3 +89,4 @@ exclude_lines = [ [tool.isort] profile = "black" known_third_party = [] + From f9aefec8660671504220325451259c05a01b080d Mon Sep 17 00:00:00 2001 From: autobump Date: Sat, 17 Sep 2022 16:27:58 +0000 Subject: [PATCH 2/9] =?UTF-8?q?Bump=20version:=200.1.0.dev10=20=E2=86=92?= =?UTF-8?q?=200.1.0.dev11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hatch_version_action_example/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index 86934b0..7ec8e7c 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.0.dev10" +__version__ = "0.1.0.dev11" From 3c3b41c6ed1018baed3d27306f5082794c390f7b Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sat, 17 Sep 2022 11:29:10 -0500 Subject: [PATCH 3/9] Running on patch --- hatch_version_action_example/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index 7ec8e7c..0a25dcf 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.0.dev11" +__version__ = "0.1.0" From e288594133a379e49b5c621854b1455535de1b66 Mon Sep 17 00:00:00 2001 From: autobump Date: Sat, 17 Sep 2022 16:32:31 +0000 Subject: [PATCH 4/9] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.1?= =?UTF-8?q?.dev0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hatch_version_action_example/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index 0a25dcf..ef2f679 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.0" +__version__ = "0.1.1.dev0" From d8e735cdd821478b1bb1a2199b182f3a0736f767 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sun, 22 Jan 2023 16:47:57 -0600 Subject: [PATCH 5/9] use v3 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40f6267..b3f731c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ name: Use hatch-version-action on: # Triggers the workflow on push or pull request events but only for the "main" branch push: - branches: [ "*" ] + branches: ["*"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -26,6 +26,6 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: waylonwalker/hatch-version-action@v1 + - uses: waylonwalker/hatch-version-action@v3 with: before-command: "test-lint" From 754728440bb8ea46f9eef489e3cb65481f30b217 Mon Sep 17 00:00:00 2001 From: autobump Date: Sun, 22 Jan 2023 22:49:08 +0000 Subject: [PATCH 6/9] =?UTF-8?q?Bump=20version:=200.1.1.dev0=20=E2=86=92=20?= =?UTF-8?q?0.1.1.dev1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hatch_version_action_example/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index ef2f679..3cb03cc 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.1.dev0" +__version__ = "0.1.1.dev1" From dff6453b0ce8b5fd6af001e13d45f0864ef250f1 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sun, 22 Jan 2023 17:20:46 -0600 Subject: [PATCH 7/9] give it the token --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b3f731c..e25bdf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,3 +29,5 @@ jobs: - uses: waylonwalker/hatch-version-action@v3 with: before-command: "test-lint" + env: + GH_TOKEN: ${{ github.token }} From 7e525d61936bb88fd27fec4eeb03bf6932279eae Mon Sep 17 00:00:00 2001 From: autobump Date: Sun, 22 Jan 2023 23:21:48 +0000 Subject: [PATCH 8/9] =?UTF-8?q?Bump=20version:=200.1.1.dev1=20=E2=86=92=20?= =?UTF-8?q?0.1.1.dev2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hatch_version_action_example/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index 3cb03cc..cbe0bcd 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.1.dev1" +__version__ = "0.1.1.dev2" From dba3e1db32026f2130fcda5281e582f88e96fbcb Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sun, 22 Jan 2023 17:33:27 -0600 Subject: [PATCH 9/9] add changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6dbfe52 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## Changelog + +- implemented v3 support to upload realeases