gh-space-shooter 0.0.1__tar.gz → 0.0.2__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 (34) hide show
  1. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/.github/workflows/publish.yml +3 -3
  2. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/PKG-INFO +1 -1
  3. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/pyproject.toml +2 -2
  4. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/.github/dependabot.yml +0 -0
  5. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/.gitignore +0 -0
  6. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/.python-version +0 -0
  7. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/LICENSE +0 -0
  8. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/README.md +0 -0
  9. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/czl9707_contributions.json +0 -0
  10. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/example.gif +0 -0
  11. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/__init__.py +0 -0
  12. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/cli.py +0 -0
  13. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/console_printer.py +0 -0
  14. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/constants.py +0 -0
  15. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/__init__.py +0 -0
  16. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/animator.py +0 -0
  17. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/__init__.py +0 -0
  18. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/bullet.py +0 -0
  19. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/drawable.py +0 -0
  20. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/enemy.py +0 -0
  21. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/explosion.py +0 -0
  22. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/ship.py +0 -0
  23. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/drawables/starfield.py +0 -0
  24. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/game_state.py +0 -0
  25. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/render_context.py +0 -0
  26. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/renderer.py +0 -0
  27. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/strategies/__init__.py +0 -0
  28. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/strategies/base_strategy.py +0 -0
  29. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/strategies/column_strategy.py +0 -0
  30. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/strategies/random_strategy.py +0 -0
  31. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/game/strategies/row_strategy.py +0 -0
  32. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/github_client.py +0 -0
  33. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/src/gh_space_shooter/py.typed +0 -0
  34. {gh_space_shooter-0.0.1 → gh_space_shooter-0.0.2}/uv.lock +0 -0
@@ -30,9 +30,6 @@ jobs:
30
30
  - name: Install Python ${{ env.PYTHON_LATEST }}
31
31
  run: uv python install ${{ env.PYTHON_LATEST }}
32
32
 
33
- - name: Build
34
- run: uv build
35
-
36
33
  - name: Bump version
37
34
  id: bump
38
35
  uses: callowayproject/bump-my-version@master
@@ -41,6 +38,9 @@ jobs:
41
38
  with:
42
39
  args: ${{ inputs.release_type }}
43
40
  github-token: ${{ secrets.GH_TOKEN }}
41
+
42
+ - name: Build
43
+ run: uv build
44
44
 
45
45
  - name: Publish
46
46
  run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gh-space-shooter
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A CLI tool that visualizes GitHub contribution graphs as gamified GIFs
5
5
  Author-email: zane <czl970721@gmail.com>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "gh-space-shooter"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "A CLI tool that visualizes GitHub contribution graphs as gamified GIFs"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -24,7 +24,7 @@ build-backend = "hatchling.build"
24
24
 
25
25
 
26
26
  [tool.bumpversion]
27
- current_version = "0.0.1"
27
+ current_version = "0.0.2"
28
28
  parse = """(?x)
29
29
  (?P<major>0|[1-9]\\d*)\\.
30
30
  (?P<minor>0|[1-9]\\d*)\\.