py-fastplus 0.2.1__tar.gz → 0.2.2__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 (25) hide show
  1. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.github/workflows/Publish.yml +7 -2
  2. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/Cargo.lock +1 -1
  3. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/Cargo.toml +1 -1
  4. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/PKG-INFO +1 -1
  5. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/operator.rs +1 -1
  6. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.githooks/pre-commit +0 -0
  7. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.github/workflows/Commit.yml +0 -0
  8. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.gitignore +0 -0
  9. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/LICENSE +0 -0
  10. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/README.md +0 -0
  11. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/examples/parse_demo.rs +0 -0
  12. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/pyproject.toml +0 -0
  13. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/__about__.py +0 -0
  14. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/__init__.py +0 -0
  15. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/core.pyi +0 -0
  16. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/parser.py +0 -0
  17. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/tests/test_all.py +0 -0
  18. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/ast.rs +0 -0
  19. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/fastplus.pest +0 -0
  20. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/field.rs +0 -0
  21. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/lib.rs +0 -0
  22. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/parser.rs +0 -0
  23. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/python.rs +0 -0
  24. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/python_macro.rs +0 -0
  25. {py_fastplus-0.2.1 → py_fastplus-0.2.2}/uv.lock +0 -0
@@ -187,12 +187,17 @@ jobs:
187
187
  uses: actions/attest@v4
188
188
  with:
189
189
  subject-path: 'wheels-*/*'
190
+ - name: Recreate latest release
191
+ if: ${{ steps.release-tag.outputs.tag == 'dev-latest' || steps.release-tag.outputs.tag == 'main-latest' }}
192
+ env:
193
+ GH_TOKEN: ${{ github.token }}
194
+ RELEASE_TAG: ${{ steps.release-tag.outputs.tag }}
195
+ run: gh release delete "$RELEASE_TAG" --yes || true
190
196
  - name: Create or update GitHub Release
191
197
  uses: softprops/action-gh-release@v3
192
198
  with:
193
199
  tag_name: ${{ steps.release-tag.outputs.tag }}
194
- body: FastPlus release generated by the Publish workflow.
195
- generate_release_notes: false
200
+ generate_release_notes: true
196
201
  append_body: false
197
202
  overwrite_files: true
198
203
  files: wheels-*/*
@@ -4,7 +4,7 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "fastplus"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  dependencies = [
9
9
  "pest",
10
10
  "pest_derive",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "fastplus"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: py-fastplus
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  License-File: LICENSE
@@ -1220,7 +1220,7 @@ define_operator_registry! {
1220
1220
  {
1221
1221
  "lower" => (Number, None),
1222
1222
  "upper" => (Number, None),
1223
- "inverse" => (Boolean, None),
1223
+ "inverse" => (Boolean, Some(Constant::Boolean(false))),
1224
1224
  "mask" => (Mask, Some(Constant::NaN)),
1225
1225
  },
1226
1226
  1,
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