Skip to content

Commit 3276be5

Browse files
committed
Update version to 0.1.4, fix hardcoded configuration, and enhance changelog
- Bumped version in pyproject.toml and __init__.py from 0.1.3 to 0.1.4. - Updated CHANGELOG.md to reflect the fix for hardcoded values and document this minor bugfix release. - Revised README.md to display the latest version number.
1 parent cb40b5e commit 3276be5

4 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,21 @@ All notable changes to Project Vectorizer 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.4] - 2025-10-13
9+
10+
### Fixed
11+
12+
- **Hardcoded value ** – Replaced hardcoded configuration with dynamic variable lookup
13+
14+
### Notes
15+
16+
- This is a minor bugfix release with no API or CLI changes.
17+
818
## [0.1.3] - 2025-10-13
919

1020
### Fixed
1121

12-
- **Hardcoded value in work module** – Replaced hardcoded configuration with dynamic variable lookup
22+
- **Hardcoded value** – Replaced hardcoded configuration with dynamic variable lookup
1323
- Prevents unexpected behavior when running with custom configs
1424

1525
### Notes

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A powerful CLI tool that vectorizes codebases, stores them in a vector database, tracks changes, and serves them via MCP (Model Context Protocol) for AI agents like Claude, Codex, and others.
44

5-
**Latest Version**: 0.1.3 | [Changelog](#changelog) | [GitHub](https://github.com/starkbaknet/project-vectorizer)
5+
**Latest Version**: 0.1.4 | [Changelog](#changelog) | [GitHub](https://github.com/starkbaknet/project-vectorizer)
66

77
---
88

@@ -1230,11 +1230,21 @@ pv index /path/to/project --max-resources --verbose
12301230

12311231
## Changelog
12321232

1233+
## [0.1.4] - 2025-10-13
1234+
1235+
### Fixed
1236+
1237+
- **Hardcoded value ** – Replaced hardcoded configuration with dynamic variable lookup
1238+
1239+
### Notes
1240+
1241+
- This is a minor bugfix release with no API or CLI changes.
1242+
12331243
## [0.1.3] - 2025-10-13
12341244

12351245
### Fixed
12361246

1237-
- **Hardcoded value in work module** – Replaced hardcoded configuration with dynamic variable lookup
1247+
- **Hardcoded value** – Replaced hardcoded configuration with dynamic variable lookup
12381248
- Prevents unexpected behavior when running with custom configs
12391249

12401250
### Notes

project_vectorizer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Project Vectorizer - CLI tool for vectorizing codebases and serving via MCP."""
22

3-
__version__ = "0.1.3"
3+
__version__ = "0.1.4"
44
__author__ = "StarkBak"
55
__email__ = "bak.stark06@gmail.com"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "project-vectorizer"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "CLI tool for vectorizing codebases and serving them via MCP"
99
authors = [{name = "StarkBak", email = "bak.stark06@gmail.com"}]
1010
license = {text = "MIT"}
@@ -21,7 +21,7 @@ keywords = [
2121
"ai-tools"
2222
]
2323
classifiers = [
24-
"Development Status :: 4 - Beta",
24+
"Development Status :: Production",
2525
"Intended Audience :: Developers",
2626
"License :: OSI Approved :: MIT License",
2727
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)