dotted-notation 0.44.0__tar.gz → 0.44.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.
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/CHANGELOG.md +7 -0
- {dotted_notation-0.44.0/dotted_notation.egg-info → dotted_notation-0.44.1}/PKG-INFO +1 -1
- {dotted_notation-0.44.0 → dotted_notation-0.44.1/dotted_notation.egg-info}/PKG-INFO +1 -1
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/pyproject.toml +1 -1
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/LICENSE +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/MANIFEST.in +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/README.md +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/__init__.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/__main__.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/access.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/api.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/base.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/cli/__init__.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/cli/_compat.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/cli/formats.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/cli/main.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/containers.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/engine.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/filters.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/grammar.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/groups.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/matchers.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/predicates.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/recursive.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/results.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/sql/__init__.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/sql/core.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/sql/pg.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/transforms.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/utils.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/utypes.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted/wrappers.py +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/SOURCES.txt +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/dependency_links.txt +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/entry_points.txt +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/requires.txt +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/top_level.txt +0 -0
- {dotted_notation-0.44.0 → dotted_notation-0.44.1}/setup.cfg +0 -0
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to `dotted` are recorded here. Versions prior to
|
|
4
4
|
the ones listed are omitted — browse git history for earlier entries.
|
|
5
5
|
|
|
6
|
+
## [0.44.1]
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- GitHub Actions: `tests.yml` runs pytest on push/PR; `publish.yml`
|
|
10
|
+
uses PyPI Trusted Publishing (OIDC) on GitHub Release, gated on
|
|
11
|
+
tests passing. Releases now show "Verified details" on PyPI.
|
|
12
|
+
|
|
6
13
|
## [0.44.0]
|
|
7
14
|
|
|
8
15
|
### Changed (breaking)
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dotted_notation"
|
|
7
|
-
version = "0.44.
|
|
7
|
+
version = "0.44.1"
|
|
8
8
|
description = "Dotted notation for safe nested data traversal with optional chaining, pattern matching, and transforms"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.6"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dotted_notation-0.44.0 → dotted_notation-0.44.1}/dotted_notation.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|