namecheap-python 1.0.2__tar.gz → 1.0.3__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.
Files changed (37) hide show
  1. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/.github/workflows/release.yml +29 -1
  2. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/PKG-INFO +1 -1
  3. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/pyproject.toml +1 -1
  4. namecheap_python-1.0.2/.github/workflows/git-cliff.yml +0 -33
  5. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/.env.example +0 -0
  6. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/.github/cliff.toml +0 -0
  7. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/.gitignore +0 -0
  8. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/.pre-commit-config.yaml +0 -0
  9. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/CLI.md +0 -0
  10. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/LICENSE +0 -0
  11. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/MANIFEST.in +0 -0
  12. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/README.md +0 -0
  13. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/docs/dev/README.md +0 -0
  14. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/examples/README.md +0 -0
  15. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/examples/quickstart.py +0 -0
  16. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/pending.md +0 -0
  17. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/__init__.py +0 -0
  18. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/_api/__init__.py +0 -0
  19. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/_api/base.py +0 -0
  20. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/_api/dns.py +0 -0
  21. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/_api/domains.py +0 -0
  22. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/client.py +0 -0
  23. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/errors.py +0 -0
  24. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/logging.py +0 -0
  25. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap/models.py +0 -0
  26. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_cli/README.md +0 -0
  27. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_cli/__init__.py +0 -0
  28. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_cli/__main__.py +0 -0
  29. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_cli/completion.py +0 -0
  30. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/README.md +0 -0
  31. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/__init__.py +0 -0
  32. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/__main__.py +0 -0
  33. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/assets/screenshot1.png +0 -0
  34. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/assets/screenshot2.png +0 -0
  35. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/assets/screenshot3.png +0 -0
  36. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/src/namecheap_dns_tui/assets/screenshot4.png +0 -0
  37. {namecheap_python-1.0.2 → namecheap_python-1.0.3}/uv.lock +0 -0
@@ -87,4 +87,32 @@ jobs:
87
87
  git config user.name github-actions
88
88
  git config user.email github-actions@github.com
89
89
  git tag -a "v$VERSION" -m "Release v$VERSION"
90
- git push origin "v$VERSION"
90
+ git push origin "v$VERSION"
91
+
92
+ - name: Check for cliff.toml
93
+ if: steps.check.outputs.exists == 'false'
94
+ id: check-cliff
95
+ run: |
96
+ if [ -f .github/cliff.toml ]; then
97
+ echo "has_cliff=true" >> $GITHUB_OUTPUT
98
+ else
99
+ echo "has_cliff=false" >> $GITHUB_OUTPUT
100
+ fi
101
+
102
+ - name: Generate Changelog
103
+ if: steps.check.outputs.exists == 'false' && steps.check-cliff.outputs.has_cliff == 'true'
104
+ id: git-cliff
105
+ uses: orhun/git-cliff-action@v4
106
+ with:
107
+ config: .github/cliff.toml
108
+ args: --latest
109
+ env:
110
+ OUTPUT: CHANGELOG.md
111
+ GITHUB_REPO: ${{ github.repository }}
112
+
113
+ - name: Create GitHub Release
114
+ if: steps.check.outputs.exists == 'false' && steps.check-cliff.outputs.has_cliff == 'true'
115
+ uses: softprops/action-gh-release@v2
116
+ with:
117
+ tag_name: v${{ steps.check.outputs.version }}
118
+ body: ${{ steps.git-cliff.outputs.content }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: namecheap-python
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A friendly Python SDK for Namecheap API
5
5
  Project-URL: Homepage, https://github.com/adriangalilea/namecheap-python
6
6
  Project-URL: Repository, https://github.com/adriangalilea/namecheap-python
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "namecheap-python"
3
- version = "1.0.2"
3
+ version = "1.0.3"
4
4
  description = "A friendly Python SDK for Namecheap API"
5
5
  authors = [{name = "Adrian Galilea Delgado", email = "adriangalilea@gmail.com"}]
6
6
  readme = "README.md"
@@ -1,33 +0,0 @@
1
- name: Create Release
2
-
3
- on:
4
- push:
5
- tags:
6
- - 'v*'
7
-
8
- jobs:
9
- release:
10
- runs-on: ubuntu-latest
11
- permissions:
12
- contents: write
13
- steps:
14
- - uses: actions/checkout@v4
15
- with:
16
- fetch-depth: 0
17
-
18
- - name: Generate Changelog
19
- id: git-cliff
20
- uses: orhun/git-cliff-action@v4
21
- with:
22
- config: .github/cliff.toml
23
- args: --latest
24
- env:
25
- OUTPUT: CHANGELOG.md
26
- GITHUB_REPO: ${{ github.repository }}
27
-
28
- - name: Create GitHub Release
29
- uses: softprops/action-gh-release@v2
30
- with:
31
- body: ${{ steps.git-cliff.outputs.content }}
32
- draft: false
33
- prerelease: false