From 3132aab2a514d1560f8da459c2da86ddc2d512dc Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 30 Mar 2026 10:47:32 +0200 Subject: [PATCH] Release version 1.1.0 --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a27bdb..8c539c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [1.1.0] - 2026-03-30 + +* *CI stabilization and modularization*: Split into reusable workflows (lint, security, tests) with correct permissions for CodeQL and SARIF uploads +* *Modern Python packaging*: Migration to pyproject.toml and updated Dockerfile using Python 3.12 +* *Improved test coverage*: Added unit, integration, lint, security, and E2E tests using act +* *Local vendor assets*: Replaced external CDNs with npm-based local asset pipeline +* *Enhanced build workflow*: Extended Makefile with targets for test, lint, security, and CI plus vendor build process +* *Frontend fix*: Prevented navbar wrapping and improved layout behavior +* *Developer guidelines*: Introduced AGENTS.md and CLAUDE.md with enforced pre-commit rules + + ## [1.0.0] - 2026-02-19 * Official Release🄳 diff --git a/pyproject.toml b/pyproject.toml index f40e37a..0b9ca8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "portfolio-ui" -version = "0.0.0" +version = "1.1.0" description = "A lightweight YAML-driven portfolio and landing-page generator." readme = "README.md" requires-python = ">=3.12"