pathlib-next 0.4.0__tar.gz → 0.4.1__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 (32) hide show
  1. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/CHANGELOG.md +9 -1
  2. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/PKG-INFO +3 -5
  3. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/README.md +2 -4
  4. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/pyproject.toml +1 -1
  5. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/.gitignore +0 -0
  6. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/LICENSE +0 -0
  7. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/docs/api/reference.md +0 -0
  8. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/docs/changelog.md +0 -0
  9. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/docs/index.md +0 -0
  10. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/examples/example.py +0 -0
  11. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/mkdocs.yml +0 -0
  12. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/__init__.py +0 -0
  13. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/fspath.py +0 -0
  14. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/mempath.py +0 -0
  15. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/path.py +0 -0
  16. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/protocols/__init__.py +0 -0
  17. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/protocols/fs.py +0 -0
  18. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/protocols/io.py +0 -0
  19. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/py.typed +0 -0
  20. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/__init__.py +0 -0
  21. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/query.py +0 -0
  22. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/schemes/__init__.py +0 -0
  23. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/schemes/file.py +0 -0
  24. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/schemes/http.py +0 -0
  25. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/schemes/sftp.py +0 -0
  26. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/uri/source.py +0 -0
  27. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/utils/__init__.py +0 -0
  28. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/utils/glob.py +0 -0
  29. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/utils/stat.py +0 -0
  30. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/src/pathlib_next/utils/sync.py +0 -0
  31. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/tests/test_local.py +0 -0
  32. {pathlib_next-0.4.0 → pathlib_next-0.4.1}/tests/test_uri.py +0 -0
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.1] - 2026-07-11
11
+
12
+ ### Fixed
13
+ - Removed explicit `[tool.hatch.build.targets.wheel]` packages config that caused hatchling to fail resolving `README.md` during editable installs on CI.
14
+ - Converted `README.md` from a symlink (mode `120000`) to a regular file, fixing `git checkout` failures on macOS and Windows runners.
15
+ - Removed agent-tooling references (`AGENTS.md`, `PYTHON.md`) from committed files.
16
+
10
17
  ## [0.4.0] - 2026-07-11
11
18
 
12
19
  ### Added
@@ -26,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
26
33
  - Sync error handling.
27
34
  - Generic Path Protocol based pathlib implementation for URI paths with file access support for sftp, http, file schemes.
28
35
 
29
- [Unreleased]: https://github.com/jose-pr/pathlib_next/compare/v0.4.0...HEAD
36
+ [Unreleased]: https://github.com/jose-pr/pathlib_next/compare/v0.4.1...HEAD
37
+ [0.4.1]: https://github.com/jose-pr/pathlib_next/compare/v0.4.0...v0.4.1
30
38
  [0.4.0]: https://github.com/jose-pr/pathlib_next/releases/tag/v0.4.0
31
39
  [0.3.5]: https://github.com/jose-pr/pathlib_next/releases/tag/v0.3.5
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathlib_next
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Generic Path Protocol based pathlib
5
5
  Project-URL: Homepage, https://github.com/jose-pr/pathlib_next/
6
6
  Project-URL: Documentation, https://jose-pr.github.io/pathlib_next/
@@ -95,15 +95,13 @@ Python >= 3.9
95
95
 
96
96
  ## Development
97
97
 
98
- See `AGENTS.md` (and the language-specific directive it points to, e.g. `PYTHON.md`)
99
- for environment setup, dependency install, and test commands.
98
+ For environment setup, dependency installation, and running tests, refer to virtual environment configurations and running `pytest`.
100
99
 
101
100
  ### Releasing
102
101
 
103
102
  This project follows [Semantic Versioning](https://semver.org/) and keeps a
104
103
  [`CHANGELOG.md`](CHANGELOG.md). Pushing a tag matching `v*` triggers the release
105
- workflow: test gate → build → publish → docs deploy (see `AGENTS.md`'s "Repository
106
- Structure" section and the language-specific CI/CD notes for the concrete jobs).
104
+ workflow: test gate → build → publish → docs deploy.
107
105
 
108
106
  ### Documentation site
109
107
 
@@ -61,15 +61,13 @@ Python >= 3.9
61
61
 
62
62
  ## Development
63
63
 
64
- See `AGENTS.md` (and the language-specific directive it points to, e.g. `PYTHON.md`)
65
- for environment setup, dependency install, and test commands.
64
+ For environment setup, dependency installation, and running tests, refer to virtual environment configurations and running `pytest`.
66
65
 
67
66
  ### Releasing
68
67
 
69
68
  This project follows [Semantic Versioning](https://semver.org/) and keeps a
70
69
  [`CHANGELOG.md`](CHANGELOG.md). Pushing a tag matching `v*` triggers the release
71
- workflow: test gate → build → publish → docs deploy (see `AGENTS.md`'s "Repository
72
- Structure" section and the language-specific CI/CD notes for the concrete jobs).
70
+ workflow: test gate → build → publish → docs deploy.
73
71
 
74
72
  ### Documentation site
75
73
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pathlib_next"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  authors = [{ name = "Jose A" }]
9
9
  description = "Generic Path Protocol based pathlib"
10
10
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes