hatch-cpp 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 (65) hide show
  1. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/PKG-INFO +2 -2
  2. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/__init__.py +1 -1
  3. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/pyproject.toml +3 -3
  4. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/.gitignore +0 -0
  5. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/LICENSE +0 -0
  6. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/README.md +0 -0
  7. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/config.py +0 -0
  8. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/hooks.py +0 -0
  9. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/plugin.py +0 -0
  10. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_hatch_build.py +0 -0
  11. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_basic/cpp/project/basic.cpp +0 -0
  12. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_basic/cpp/project/basic.hpp +0 -0
  13. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_basic/project/__init__.py +0 -0
  14. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_basic/pyproject.toml +0 -0
  15. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/CMakeLists.txt +0 -0
  16. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/Makefile +0 -0
  17. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/cpp/project/basic.cpp +0 -0
  18. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/cpp/project/basic.hpp +0 -0
  19. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/project/__init__.py +0 -0
  20. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/project/include/project/basic.hpp +0 -0
  21. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake/pyproject.toml +0 -0
  22. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/CMakeLists.txt +0 -0
  23. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/Makefile +0 -0
  24. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/cpp/project/basic.cpp +0 -0
  25. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/cpp/project/basic.hpp +0 -0
  26. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/project/__init__.py +0 -0
  27. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/project/include/project/basic.hpp +0 -0
  28. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/pyproject.toml +0 -0
  29. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_cmake_vcpkg/vcpkg.json +0 -0
  30. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_hatch_build/cpp/project/basic.cpp +0 -0
  31. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_hatch_build/cpp/project/basic.hpp +0 -0
  32. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_hatch_build/project/__init__.py +0 -0
  33. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_hatch_build/pyproject.toml +0 -0
  34. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_limited_api/cpp/project/basic.cpp +0 -0
  35. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_limited_api/cpp/project/basic.hpp +0 -0
  36. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_limited_api/project/__init__.py +0 -0
  37. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_limited_api/pyproject.toml +0 -0
  38. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_nanobind/cpp/project/basic.cpp +0 -0
  39. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_nanobind/cpp/project/basic.hpp +0 -0
  40. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_nanobind/project/__init__.py +0 -0
  41. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_nanobind/pyproject.toml +0 -0
  42. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_classes/cpp/project/basic.cpp +0 -0
  43. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_classes/cpp/project/basic.hpp +0 -0
  44. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_classes/project/__init__.py +0 -0
  45. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_classes/pyproject.toml +0 -0
  46. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_toolchain/cpp/project/basic.cpp +0 -0
  47. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_toolchain/cpp/project/basic.hpp +0 -0
  48. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_toolchain/project/__init__.py +0 -0
  49. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_override_toolchain/pyproject.toml +0 -0
  50. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind/cpp/project/basic.cpp +0 -0
  51. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind/cpp/project/basic.hpp +0 -0
  52. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind/project/__init__.py +0 -0
  53. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind/pyproject.toml +0 -0
  54. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind_vcpkg/cpp/project/basic.cpp +0 -0
  55. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind_vcpkg/cpp/project/basic.hpp +0 -0
  56. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind_vcpkg/project/__init__.py +0 -0
  57. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind_vcpkg/pyproject.toml +0 -0
  58. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_project_pybind_vcpkg/vcpkg.json +0 -0
  59. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_projects.py +0 -0
  60. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/tests/test_structs.py +0 -0
  61. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/toolchains/__init__.py +0 -0
  62. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/toolchains/cmake.py +0 -0
  63. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/toolchains/common.py +0 -0
  64. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/toolchains/vcpkg.py +0 -0
  65. {hatch_cpp-0.2.1 → hatch_cpp-0.2.2}/hatch_cpp/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hatch-cpp
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Hatch plugin for C++ builds
5
5
  Project-URL: Repository, https://github.com/python-project-templates/hatch-cpp
6
6
  Project-URL: Homepage, https://github.com/python-project-templates/hatch-cpp
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.14
20
20
  Classifier: Programming Language :: Python :: Implementation :: CPython
21
21
  Classifier: Programming Language :: Python :: Implementation :: PyPy
22
22
  Requires-Python: >=3.10
23
- Requires-Dist: hatch-build<0.5,>=0.4
23
+ Requires-Dist: hatch-build<0.6,>=0.4
24
24
  Requires-Dist: hatchling
25
25
  Requires-Dist: pydantic
26
26
  Provides-Extra: develop
@@ -1,4 +1,4 @@
1
- __version__ = "0.2.1"
1
+ __version__ = "0.2.2"
2
2
 
3
3
  from .config import *
4
4
  from .hooks import *
@@ -8,7 +8,7 @@ authors = [{name = "the hatch-cpp authors", email = "t.paine154@gmail.com"}]
8
8
  description = "Hatch plugin for C++ builds"
9
9
  readme = "README.md"
10
10
  license = { text = "Apache-2.0" }
11
- version = "0.2.1"
11
+ version = "0.2.2"
12
12
  requires-python = ">=3.10"
13
13
  keywords = [
14
14
  "hatch",
@@ -35,7 +35,7 @@ classifiers = [
35
35
 
36
36
  dependencies = [
37
37
  "hatchling",
38
- "hatch-build>=0.4,<0.5",
38
+ "hatch-build>=0.4,<0.6",
39
39
  "pydantic",
40
40
  ]
41
41
 
@@ -74,7 +74,7 @@ Repository = "https://github.com/python-project-templates/hatch-cpp"
74
74
  Homepage = "https://github.com/python-project-templates/hatch-cpp"
75
75
 
76
76
  [tool.bumpversion]
77
- current_version = "0.2.1"
77
+ current_version = "0.2.2"
78
78
  commit = true
79
79
  tag = false
80
80
  commit_args = "-s"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes