diffx-python 0.4.0__tar.gz → 0.4.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.
@@ -48,3 +48,31 @@ htmlcov/
48
48
  # Binary downloads
49
49
  **/packages/*/bin/
50
50
  **/packages/*/temp/
51
+
52
+ # Configuration files with sensitive data
53
+ .config/
54
+ **/claude_desktop_config.json
55
+ **/.config/claude-desktop/
56
+
57
+ # Claude CLI cache and logs
58
+ ~/.cache/claude-cli-nodejs/
59
+ **/.cache/claude-cli-nodejs/
60
+ **/mcp-logs-ide/
61
+ **/*mcp-logs-ide*
62
+
63
+ # Temporary files
64
+ *.tmp
65
+ *.temp
66
+ *.swp
67
+ *.swo
68
+ *~
69
+
70
+ # Local development files
71
+ .env.local
72
+ .env.development.local
73
+ .env.test.local
74
+ .env.production.local
75
+
76
+ # Documentation consistency check outputs
77
+ docs-consistency-*.log
78
+ docs-consistency-*.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: diffx-python
3
- Version: 0.4.0
3
+ Version: 0.4.2
4
4
  Summary: Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting.
5
5
  Project-URL: Homepage, https://github.com/kako-jun/diffx
6
6
  Project-URL: Repository, https://github.com/kako-jun/diffx
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "diffx-python"
7
- version = "0.4.0"
7
+ version = "0.4.2"
8
8
  description = "Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -27,12 +27,12 @@ class DiffOptions:
27
27
  ignore_keys_regex: Optional[str] = None
28
28
  epsilon: Optional[float] = None
29
29
  array_id_key: Optional[str] = None
30
- optimize: bool = False
31
30
  context: Optional[int] = None
32
31
  ignore_whitespace: bool = False
33
32
  ignore_case: bool = False
34
33
  quiet: bool = False
35
34
  brief: bool = False
35
+ debug: bool = False
36
36
 
37
37
 
38
38
  class DiffResult:
@@ -173,10 +173,6 @@ def diff(
173
173
  if options.array_id_key:
174
174
  args.extend(["--array-id-key", options.array_id_key])
175
175
 
176
- # Add optimize option
177
- if options.optimize:
178
- args.append("--optimize")
179
-
180
176
  # Add context option
181
177
  if options.context is not None:
182
178
  args.extend(["--context", str(options.context)])
@@ -197,6 +193,10 @@ def diff(
197
193
  if options.brief:
198
194
  args.append("--brief")
199
195
 
196
+ # Add debug option
197
+ if options.debug:
198
+ args.append("--debug")
199
+
200
200
  stdout, stderr = _execute_diffx(args)
201
201
 
202
202
  # If output format is JSON, parse the result
@@ -12,7 +12,13 @@ import urllib.request
12
12
  import zipfile
13
13
  from pathlib import Path
14
14
 
15
- DIFFX_VERSION = "0.3.0"
15
+ import importlib.metadata
16
+
17
+ try:
18
+ DIFFX_VERSION = importlib.metadata.version("diffx-python")
19
+ except importlib.metadata.PackageNotFoundError:
20
+ # Fallback for development
21
+ DIFFX_VERSION = "0.4.2"
16
22
 
17
23
 
18
24
  def get_platform_info():
File without changes