clicodelog 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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clicodelog
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A lightweight, local-first web app to browse, inspect, and export logs from CLI-based AI coding agents
5
5
  Author: monk1337
6
6
  License-Expression: MIT
@@ -2,5 +2,5 @@
2
2
  CLI Code Log - Browse, inspect, and export logs from CLI-based AI coding agents.
3
3
  """
4
4
 
5
- __version__ = "0.2.1"
5
+ __version__ = "0.2.2"
6
6
  __author__ = "monk1337"
@@ -83,7 +83,7 @@ def sync_data(source_id=None, silent=False):
83
83
  return False
84
84
 
85
85
  # Create data directory if it doesn't exist
86
- DATA_DIR.mkdir(exist_ok=True)
86
+ DATA_DIR.mkdir(parents=True, exist_ok=True)
87
87
 
88
88
  # Copy source directory
89
89
  if not silent:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clicodelog
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A lightweight, local-first web app to browse, inspect, and export logs from CLI-based AI coding agents
5
5
  Author: monk1337
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "clicodelog"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "A lightweight, local-first web app to browse, inspect, and export logs from CLI-based AI coding agents"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes