struct-frame 0.0.18__tar.gz → 0.0.19__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.

Potentially problematic release.


This version of struct-frame might be problematic. Click here for more details.

Files changed (28) hide show
  1. {struct_frame-0.0.18 → struct_frame-0.0.19}/DEVGUIDE.md +1 -2
  2. {struct_frame-0.0.18 → struct_frame-0.0.19}/PKG-INFO +1 -1
  3. {struct_frame-0.0.18 → struct_frame-0.0.19}/pyproject.toml +1 -1
  4. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/generate.py +2 -0
  5. {struct_frame-0.0.18 → struct_frame-0.0.19}/.gitignore +0 -0
  6. {struct_frame-0.0.18 → struct_frame-0.0.19}/LICENSE +0 -0
  7. {struct_frame-0.0.18 → struct_frame-0.0.19}/README.md +0 -0
  8. {struct_frame-0.0.18 → struct_frame-0.0.19}/biostream.proto +0 -0
  9. {struct_frame-0.0.18 → struct_frame-0.0.19}/index.ts +0 -0
  10. {struct_frame-0.0.18 → struct_frame-0.0.19}/main.c +0 -0
  11. {struct_frame-0.0.18 → struct_frame-0.0.19}/myl_vehicle.proto +0 -0
  12. {struct_frame-0.0.18 → struct_frame-0.0.19}/package-lock.json +0 -0
  13. {struct_frame-0.0.18 → struct_frame-0.0.19}/package.json +0 -0
  14. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/main.py +0 -0
  15. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/__init__.py +0 -0
  16. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/__main__.py +0 -0
  17. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/base.py +0 -0
  18. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/c/struct_frame.h +0 -0
  19. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/c/struct_frame_gen.h +0 -0
  20. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/c/struct_frame_parser.h +0 -0
  21. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/c/struct_frame_types.h +0 -0
  22. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/ts/struct_frame.ts +0 -0
  23. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/ts/struct_frame_gen.ts +0 -0
  24. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/ts/struct_frame_parser.ts +0 -0
  25. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/boilerplate/ts/struct_frame_types.ts +0 -0
  26. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/c_gen.py +0 -0
  27. {struct_frame-0.0.18 → struct_frame-0.0.19}/src/struct_frame/ts_gen.py +0 -0
  28. {struct_frame-0.0.18 → struct_frame-0.0.19}/tsconfig.json +0 -0
@@ -3,11 +3,10 @@
3
3
  ``` py -m pip install --upgrade build twine```
4
4
 
5
5
  ### Building
6
- Update version in pyproject.toml if necessary
6
+ Update version in pyproject.toml if needed
7
7
  ```py -m build```
8
8
 
9
9
  ### Uploading
10
- Update version in pyproject.toml if necessary and rebuild.
11
10
  ```py -m twine upload dist/*```
12
11
 
13
12
  ### Running Locally
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: struct-frame
3
- Version: 0.0.18
3
+ Version: 0.0.19
4
4
  Summary: A framework for serializing data with headers
5
5
  Project-URL: Homepage, https://github.com/mylonics/struct-frame
6
6
  Project-URL: Issues, https://github.com/mylonics/struct-frame/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "struct-frame"
7
- version = "0.0.18"
7
+ version = "0.0.19"
8
8
  authors = [
9
9
  { name="Rijesh Augustine", email="rijesh@mylonics.com" },
10
10
  ]
@@ -355,6 +355,8 @@ def main():
355
355
 
356
356
  if args.debug:
357
357
  printPackages()
358
+ print("Struct Frame successfully completed")
359
+
358
360
 
359
361
 
360
362
  if __name__ == '__main__':
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes