arnmatch 0.3.2__tar.gz → 2026.1.0__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.
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/CLAUDE.md +1 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/PKG-INFO +5 -1
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/README.md +4 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/src/arnmatch/__init__.py +1 -1
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/.github/workflows/workflow.yml +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/.gitignore +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/.python-version +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/Makefile +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/codegen/.gitignore +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/codegen/codegen.py +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/codegen/scraper.py +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/pyproject.toml +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/src/arnmatch/arn_patterns.py +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/tests/test_arnmatch.py +0 -0
- {arnmatch-0.3.2 → arnmatch-2026.1.0}/uv.lock +0 -0
|
@@ -54,5 +54,6 @@ Data flow: AWS docs → `scraper.py` → raw resources → `codegen.py` → `cod
|
|
|
54
54
|
|
|
55
55
|
- Uses `uv` for package management (not pip)
|
|
56
56
|
- Build system is hatchling with dynamic version from `src/arnmatch/__init__.py`
|
|
57
|
+
- **Versioning**: CalVer format `YYYY.MM.MICRO` (e.g., `2026.01.0`)
|
|
57
58
|
- Always run `make build` before publishing to ensure patterns are current
|
|
58
59
|
- Scraper cache lives in `.cache/` - delete if AWS docs change significantly
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arnmatch
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2026.1.0
|
|
4
4
|
Summary: Parse AWS ARNs into structured data (2000+ resource types)
|
|
5
5
|
Author-email: Andrey Gubarev <andrey@andreygubarev.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -94,6 +94,10 @@ Properties:
|
|
|
94
94
|
|
|
95
95
|
Exception raised when ARN parsing fails. Inherits from `ValueError`.
|
|
96
96
|
|
|
97
|
+
## Versioning
|
|
98
|
+
|
|
99
|
+
This project uses [CalVer](https://calver.org/) with format `YYYY.MM.MICRO` (e.g., `2026.01.0`).
|
|
100
|
+
|
|
97
101
|
## Development
|
|
98
102
|
|
|
99
103
|
Prerequisites: [uv](https://github.com/astral-sh/uv)
|
|
@@ -86,6 +86,10 @@ Properties:
|
|
|
86
86
|
|
|
87
87
|
Exception raised when ARN parsing fails. Inherits from `ValueError`.
|
|
88
88
|
|
|
89
|
+
## Versioning
|
|
90
|
+
|
|
91
|
+
This project uses [CalVer](https://calver.org/) with format `YYYY.MM.MICRO` (e.g., `2026.01.0`).
|
|
92
|
+
|
|
89
93
|
## Development
|
|
90
94
|
|
|
91
95
|
Prerequisites: [uv](https://github.com/astral-sh/uv)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|