Skip to content

Commit 363a2aa

Browse files
committed
chore: bump version from 0.8.0 to 0.9.0
1 parent 588bb37 commit 363a2aa

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.bumpversion]
22
# Current version number (automatically read from pyproject.toml)
3-
current_version = "0.8.0"
3+
current_version = "0.9.0"
44

55
# Version parsing format (supports major.minor.patch)
66
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"

docs/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.9.0] - 2025-11-07
11+
12+
### Maintenance
13+
14+
-
15+
- Major improvements:
16+
- Major improvements:
17+
- - Update pyproject.toml description from 'AI-powered code intelligence' to 'Enterprise knowledge management platform'
18+
- - Remove invalid ../README.md references from mkdocs.yml (mkdocs can't access files outside docs/)
19+
- - Move frontend documentation to appropriate docs/ directories
20+
21+
1022
## [0.8.0] - 2025-11-06
1123

1224
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "code-graph"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "Enterprise knowledge management platform with Neo4j graph database, multi-interface architecture (MCP/Web/REST), and intelligent code analysis"
55
readme = "README.md"
66
requires-python = ">=3.13"

src/codebase_rag/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Version information for Code Graph Knowledge System."""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.9.0"
44
__version_info__ = tuple(int(i) for i in __version__.split("."))
55

66
# Feature flags based on version

0 commit comments

Comments
 (0)