cafs-cache-cdn-client 1.0.5__tar.gz → 1.0.6__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 (18) hide show
  1. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/PKG-INFO +1 -1
  2. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/repo/client.py +1 -1
  3. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/pyproject.toml +1 -1
  4. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/README.md +0 -0
  5. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/__init__.py +0 -0
  6. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/README.md +0 -0
  7. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/__init__.py +0 -0
  8. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/blob/__init__.py +0 -0
  9. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/blob/hash_.py +0 -0
  10. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/blob/package.py +0 -0
  11. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/blob/utils.py +0 -0
  12. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/client.py +0 -0
  13. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/exceptions.py +0 -0
  14. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/cafs/types.py +0 -0
  15. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/client.py +0 -0
  16. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/file_utils.py +0 -0
  17. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/repo/__init__.py +0 -0
  18. {cafs_cache_cdn_client-1.0.5 → cafs_cache_cdn_client-1.0.6}/cafs_cache_cdn_client/repo/datatypes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cafs-cache-cdn-client
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: Async Cache CDN client implementation
5
5
  Keywords: cafs,cache
6
6
  Author: Konstantin Belov
@@ -82,7 +82,7 @@ class RepoClient:
82
82
 
83
83
  async def tag_ref(self, repo: str, ref: str, tag: str) -> None:
84
84
  await self._request(
85
- f'/repository/{repo}/{ref}/tag', method=HTTPMethod.PUT, data={'tag': tag}
85
+ f'/repository/{repo}/{ref}/tag', method=HTTPMethod.POST, data={'tag': tag}
86
86
  )
87
87
 
88
88
  async def post_ref_info(self, repo: str, ref: str, data: dt.RefInfoBody) -> None:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cafs-cache-cdn-client"
3
- version = "1.0.5"
3
+ version = "1.0.6"
4
4
  description = "Async Cache CDN client implementation"
5
5
  authors = [
6
6
  { name = "Konstantin Belov", "email" = "k.belov@gaijin.team" },