semaphoreui-client 0.1.6__tar.gz → 0.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ name: Tag a new version
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'Version to release. Can be a version number, or one of major|minor|patch'
8
+ required: false
9
+ default: patch
10
+
11
+ jobs:
12
+ bump-version-and-tag:
13
+ name: Bump the version and tag that new version
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ token: ${{secrets.PRERELEASE_TOKEN}}
19
+ - uses: actions/setup-python@v5
20
+ with:
21
+ python-version: "3.13"
22
+ - run: pip install hatch
23
+ - run: |
24
+ git config --global user.email "paul@eventuallyanyway.com"
25
+ git config --global user.name "Paul Hummer"
26
+
27
+ hatch version ${{ inputs.version }}
28
+ git commit -a -m "release: bump to version `hatch version`"
29
+ git tag `hatch version`
30
+ git push && git push --tags
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: semaphoreui-client
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: An api client for interacting with Semaphore UI
5
5
  Project-URL: Documentation, https://github.com/rockstar/semaphoreui-client#readme
6
6
  Project-URL: Issues, https://github.com/rockstar/semaphoreui-client/issues
@@ -0,0 +1 @@
1
+ __version__ = "0.1.7"
@@ -1 +0,0 @@
1
- __version__ = "0.1.6"