Skip to content

Commit 30316a8

Browse files
committed
Release v0.1.8: Add missing config module files
1 parent b32af01 commit 30316a8

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.8] - 2025-07-14
9+
10+
### Added
11+
- Added missing config module with OutputFormat enum for better code organization
12+
- Added proper `__init__.py` and `config.py` files to the config directory
13+
14+
### Fixed
15+
- Fixed missing config directory files that were not previously tracked in git
16+
817
## [0.1.7] - 2025-07-14
918

1019
### Changed

codeanalyzer/config/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .config import OutputFormat
2+
3+
__all__ = ["OutputFormat"]

codeanalyzer/config/config.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from enum import Enum
2+
3+
4+
class OutputFormat(Enum):
5+
"""Enum-like class for output formats."""
6+
7+
JSON = "json"
8+
MSGPACK = "msgpack"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "codeanalyzer-python"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
description = "Static Analysis on Python source code using Jedi, CodeQL and Treesitter."
55
readme = "README.md"
66
authors = [

0 commit comments

Comments
 (0)