Skip to content

Commit 26094f3

Browse files
committed
chore: release version 2.0.1 with documentation updates and version bump
- Added documentation and CI setup for GitHub Pages. - Bumped project version to `2.0.1` in `pyproject.toml`, `api.py`, and `README.md`. - Updated API version metadata and root welcome message to reflect the new version.
1 parent 107f192 commit 26094f3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44

55

6+
## [2.0.1] - 2026-02-16
7+
8+
### Added
9+
- Documentation and CI for github-pages
10+
11+
### Changed
12+
- Bumped project version to `2.0.1`.
13+
- Updated API version metadata and root welcome message to `v2.0.1`.
14+
15+
16+
617
## [2.0.0] - 2025-10-07
718

819
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Manual publish commands:
108108
just docs-deploy-dev
109109

110110
# Publish a release version and update stable alias
111-
just docs-deploy-release 2.0.0
111+
just docs-deploy-release 2.0.1
112112

113113
# Set default version in selector
114114
just docs-set-default stable

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "git-metadata-extractor"
7-
version = "2.0.0"
7+
version = "2.0.1"
88
description = "This project is designed to classify imaging software repositories and extract relevant information using AI models."
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
- **Organization Endpoints**: Process GitHub organization data
6161
- **Cache Management**: Monitor and control the caching system
6262
""",
63-
version="2.0.0",
63+
version="2.0.1",
6464
contact={
6565
"name": "EPFL Center for Imaging / SDSC",
6666
"url": "https://imaging-plaza.epfl.ch",
@@ -174,7 +174,7 @@ def index():
174174
Returns basic information about the API version, GIMIE version, and configured LLM model.
175175
"""
176176
return {
177-
"title": f"Hello, welcome to the Git Metadata Extractor v2.0.0. Gimie Version 0.7.2. LLM Model {os.environ.get('MODEL', 'N/A (configured via model configs)')}",
177+
"title": f"Hello, welcome to the Git Metadata Extractor v2.0.1. Gimie Version 0.7.2. LLM Model {os.environ.get('MODEL', 'N/A (configured via model configs)')}",
178178
}
179179

180180

0 commit comments

Comments
 (0)