pace-dotnet 0.2.1__tar.gz → 0.2.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 (30) hide show
  1. {pace_dotnet-0.2.1/pace_dotnet.egg-info → pace_dotnet-0.2.2}/PKG-INFO +1 -1
  2. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/cli.py +1 -0
  3. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2/pace_dotnet.egg-info}/PKG-INFO +1 -1
  4. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pyproject.toml +1 -1
  5. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/LICENSE +0 -0
  6. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/README.md +0 -0
  7. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/README_PYPI.md +0 -0
  8. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/__init__.py +0 -0
  9. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/__init__.py +0 -0
  10. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/clean.py +0 -0
  11. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/dotnet.py +0 -0
  12. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/format.py +0 -0
  13. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/git.py +0 -0
  14. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/init.py +0 -0
  15. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/test.py +0 -0
  16. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/commands/upload.py +0 -0
  17. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/config.py +0 -0
  18. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/console_helpers.py +0 -0
  19. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/data/__init__.py +0 -0
  20. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/data/pace.toml +0 -0
  21. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/rich_demos/__init__.py +0 -0
  22. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/rich_demos/columns.py +0 -0
  23. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace/rich_demos/progress_bar.py +0 -0
  24. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/SOURCES.txt +0 -0
  25. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/dependency_links.txt +0 -0
  26. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/entry_points.txt +0 -0
  27. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/requires.txt +0 -0
  28. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/top_level.txt +0 -0
  29. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/setup.cfg +0 -0
  30. {pace_dotnet-0.2.1 → pace_dotnet-0.2.2}/tests/test_cli.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pace-dotnet
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
5
5
  Author: Noremac11800
6
6
  License: MIT
@@ -221,6 +221,7 @@ def main() -> int:
221
221
  "dotnet", help="Execute dotnet commands across the project graph"
222
222
  )
223
223
  dotnet_parser.add_argument(
224
+ "-w",
224
225
  "--summarize-warnings",
225
226
  dest="summarize_warnings",
226
227
  action="store_true",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pace-dotnet
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
5
5
  Author: Noremac11800
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pace-dotnet"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems"
9
9
  readme = "README_PYPI.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes
File without changes