Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ Thumbs.db
# Other common files to ignore
*.swp
*.bak
*.swo
*.swo
/tests/.pytest_cache/
/.pytest_cache/
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 2025-10-28

### Added
- Initial release
- Git tag management with SemVer support
- Gitflow branching model support
- Development, RC, patch, and production tag handling

### Changed

### Fixed
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ A Python class to manage Git tags following **Semantic Versioning (SemVer)** and
It provides utilities to create, increment, and validate **development**, **release candidate (RC)**, **patch**, and **production** tags.

---
## 📖 Documentation
📚 [Live Documentation](https://0jas.github.io/vcm/)

## 🚀 Features

Expand Down Expand Up @@ -81,7 +83,7 @@ The project follows the Gitflow branching model:
* **patch | hotfix/** → created from `master`.
* **master** → production-ready branch.

Below is the **Git Flow diagram**. Click on it to open **HTML** version.
Below is the **Git Flow diagram**.
[![alt text](assets/images/GitFlow.png)](assets/html/GitFlow.html)
---

Expand Down
8 changes: 8 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Version Control Manager

Welcome to the documentation for the **Version Control Manager** project.

This site includes:

- **Source Code** — Documentation generated directly from the `src/` package.
- **Test(s)** — Documentation generated directly from the `tests/` suite.
3 changes: 3 additions & 0 deletions docs/src.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Source Code

::: src.vcm
3 changes: 3 additions & 0 deletions docs/tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Tests

::: tests.test_vcm
17 changes: 17 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
site_name: Version Control Manager(VCM) Documentation
nav:
- Home: index.md
- Source Code: src.md
- Test(s): tests.md

plugins:
- search
- mkdocstrings:
default_handler: python

theme:
name: material
features:
- navigation.expand
- navigation.sections
- toc.integrate
16 changes: 1 addition & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@
click==8.0.3
exceptiongroup==1.3.0
Flask==2.0.2
gitdb==4.0.12
GitPython==3.1.45
iniconfig==2.1.0
itsdangerous==2.0.1
Jinja2==3.0.3
MarkupSafe==2.0.1
packaging==25.0
pluggy==1.6.0
Pygments==2.19.2
pytest==8.4.2
semver==3.0.4
smmap==5.0.2
tomli==2.2.1
typing_extensions==4.15.0
Werkzeug==2.0.2
setuptools==57.0.0
Loading