tinydantic 0.1.16__tar.gz → 0.1.18__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 (33) hide show
  1. {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/ci.yaml +0 -3
  2. {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/docs-release.yaml +1 -3
  3. {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/publish-python-package.yaml +7 -1
  4. {tinydantic-0.1.16 → tinydantic-0.1.18}/PKG-INFO +1 -1
  5. {tinydantic-0.1.16 → tinydantic-0.1.18}/.editorconfig +0 -0
  6. {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/docs-dev.yaml +0 -0
  7. {tinydantic-0.1.16 → tinydantic-0.1.18}/.gitignore +0 -0
  8. {tinydantic-0.1.16 → tinydantic-0.1.18}/.linkcheckerrc +0 -0
  9. {tinydantic-0.1.16 → tinydantic-0.1.18}/.markdownlint.yaml +0 -0
  10. {tinydantic-0.1.16 → tinydantic-0.1.18}/.pre-commit-config.yaml +0 -0
  11. {tinydantic-0.1.16 → tinydantic-0.1.18}/.prettierrc.yaml +0 -0
  12. {tinydantic-0.1.16 → tinydantic-0.1.18}/.vscode/extensions.json +0 -0
  13. {tinydantic-0.1.16 → tinydantic-0.1.18}/.yamllint.yaml +0 -0
  14. {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSE.md +0 -0
  15. {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/Apache-2.0.txt +0 -0
  16. {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/CC-BY-4.0.txt +0 -0
  17. {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/MIT.txt +0 -0
  18. {tinydantic-0.1.16 → tinydantic-0.1.18}/README.md +0 -0
  19. {tinydantic-0.1.16 → tinydantic-0.1.18}/REUSE.toml +0 -0
  20. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/.pages +0 -0
  21. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/css/code_select.css +0 -0
  22. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/index.md +0 -0
  23. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/installation.md +0 -0
  24. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/reference/.pages +0 -0
  25. {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/reference/index.md +0 -0
  26. {tinydantic-0.1.16 → tinydantic-0.1.18}/mkdocs.yaml +0 -0
  27. {tinydantic-0.1.16 → tinydantic-0.1.18}/pyproject.toml +0 -0
  28. {tinydantic-0.1.16 → tinydantic-0.1.18}/scripts/gen_api_docs.py +0 -0
  29. {tinydantic-0.1.16 → tinydantic-0.1.18}/src/tinydantic/__init__.py +0 -0
  30. {tinydantic-0.1.16 → tinydantic-0.1.18}/src/tinydantic/py.typed +0 -0
  31. {tinydantic-0.1.16 → tinydantic-0.1.18}/taplo.toml +0 -0
  32. {tinydantic-0.1.16 → tinydantic-0.1.18}/tests/__init__.py +0 -0
  33. {tinydantic-0.1.16 → tinydantic-0.1.18}/tests/test_version.py +0 -0
@@ -70,12 +70,9 @@ jobs:
70
70
  required-checks-pass:
71
71
  name: Ensure everything required is passing for branch protection
72
72
  if: always()
73
-
74
73
  needs:
75
74
  - test
76
-
77
75
  runs-on: ubuntu-latest
78
-
79
76
  steps:
80
77
  - name: Decide whether the needed jobs succeeded or failed
81
78
  uses: re-actors/alls-green@release/v1
@@ -51,9 +51,7 @@ jobs:
51
51
  run: hatch -v run doc:build-check
52
52
  - name: Get doc version
53
53
  run: |
54
- TAG_NAME=${{ github.event.release.tag_name }}
55
- DOC_VERSION=${TAG_NAME#v}
56
- echo "DOC_VERSION=$DOC_VERSION" >> $GITHUB_ENV
54
+ echo "DOC_VERSION=${GITHUB_REF#v}" >> $GITHUB_ENV
57
55
  - name: Commit documentation
58
56
  run: >-
59
57
  hatch -v run doc:ci-publish "$DOC_VERSION" latest
@@ -71,6 +71,11 @@ jobs:
71
71
  with:
72
72
  name: Packages
73
73
  path: dist
74
+ - name: Get release version
75
+ run: |
76
+ echo "VERSION=${GITHUB_REF#v}" >> $GITHUB_ENV
77
+ - name: Get repository name
78
+ run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV
74
79
  - name: Create GitHub Release
75
80
  env:
76
81
  GITHUB_TOKEN: ${{ github.token }}
@@ -78,6 +83,7 @@ jobs:
78
83
  gh release create
79
84
  '${{ github.ref_name }}'
80
85
  --repo '${{ github.repository }}'
86
+ --title "$REPOSITORY_NAME $VERSION"
81
87
  --notes ""
82
88
  - name: Upload artifact signatures
83
89
  env:
@@ -87,7 +93,7 @@ jobs:
87
93
  # sigstore-produced signatures and certificates.
88
94
  run: >-
89
95
  gh release upload
90
- '${{ github.ref_name }}' dist/**
96
+ "$VERSION" dist/**
91
97
  --repo '${{ github.repository }}'
92
98
 
93
99
  publish-to-testpypi:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: tinydantic
3
- Version: 0.1.16
3
+ Version: 0.1.18
4
4
  Project-URL: Documentation, https://tinydantic.dev
5
5
  Project-URL: Issues, https://github.com/tinydantic/tinydantic/issues
6
6
  Project-URL: Source, https://github.com/tinydantic/tinydantic
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