xtxt 0.1.0__tar.gz → 0.1.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.
@@ -10,3 +10,8 @@ node_modules/
10
10
  *.egg-info/
11
11
  sdk/python/dist/
12
12
  sdk/js/*.tgz
13
+ sdk/rust/target/
14
+ sdk/java/target/
15
+ sdk/rust/Cargo.lock
16
+ sdk/c/build/
17
+ sdk/cpp/build/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xtxt
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Parser and renderer for the XTXT plain-text document format
5
5
  Project-URL: Homepage, https://github.com/SaiMouli3/xtxt
6
6
  Project-URL: Specification, https://github.com/SaiMouli3/xtxt/blob/main/SPEC.md
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "xtxt"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "Parser and renderer for the XTXT plain-text document format"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -21,7 +21,7 @@ from dataclasses import dataclass, field
21
21
  from pathlib import Path
22
22
  from typing import Any, Iterable
23
23
 
24
- __version__ = "0.1.0"
24
+ __version__ = "0.1.2"
25
25
  __all__ = [
26
26
  "Arg", "Item", "Node", "Document", "Issue", "Result",
27
27
  "parse", "parse_file", "validate", "extract", "canonical",
File without changes
File without changes
File without changes