From 4380775eb334951b6f0616e0d8c1df60dc2c8bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Attila=20Bir=C3=B3?= Date: Sat, 28 Mar 2026 00:33:44 +0100 Subject: [PATCH] chore(release): prepare 1.4.0 --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- SKILL.md | 4 ++-- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bfe4f5..7f6476d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.0] - 2026-03-28 + +### Added + +- GitHub Actions workflow to run lint on every PR (#79) +- Lint status badge in README (#92) +- Workflow comparison section in README: Gitflow vs GitHub Flow vs Trunk-Based (#80) +- Integration guide with commitlint, husky, and branch name CI validation (#91) +- 5 additional troubleshooting scenarios: wrong base branch, merge conflicts, deleted branch, committed secrets, wrong merge target (#81) +- ONBOARDING.md worked example and FAQ section (#82) +- ONBOARDING.md link in README navigation bar (#87) + +### Changed + +- Upgrade GitHub Actions to Node.js 24: checkout v4→v5, github-script v7→v8 (#80) +- Update CLAUDE.md Architecture section to include scripts/ and workflows (#89) +- Update CLAUDE.md Testing section with lint and install script references (#89) + ## [1.3.0] - 2026-03-27 ### Added @@ -107,6 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CONTRIBUTING.md contribution guidelines - GitHub issue and PR templates +[1.4.0]: https://github.com/qubernetic-org/git-workflow-agent-skill/compare/v1.3.0...v1.4.0 [1.3.0]: https://github.com/qubernetic-org/git-workflow-agent-skill/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/qubernetic-org/git-workflow-agent-skill/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/qubernetic-org/git-workflow-agent-skill/compare/v1.0.4...v1.1.0 diff --git a/README.md b/README.md index 7c5ff2d..fb16af5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # Git Workflow — Claude Code Skill [![Lint](https://github.com/qubernetic-org/git-workflow-agent-skill/actions/workflows/lint.yml/badge.svg)](https://github.com/qubernetic-org/git-workflow-agent-skill/actions/workflows/lint.yml) -[![Version](https://img.shields.io/badge/version-1.3.0-blue.svg)](CHANGELOG.md) +[![Version](https://img.shields.io/badge/version-1.4.0-blue.svg)](CHANGELOG.md) [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) [![Claude Code](https://img.shields.io/badge/Claude%20Code-skill-7c3aed.svg)](https://claude.ai/code) [![Conventional Commits](https://img.shields.io/badge/commits-conventional-fe5196.svg?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org) diff --git a/SKILL.md b/SKILL.md index 8ffd01e..30e7291 100644 --- a/SKILL.md +++ b/SKILL.md @@ -1,11 +1,11 @@ --- name: git-workflow description: "Enforce a strict Gitflow-based workflow with conventional commits, semantic versioning, and issue-driven branching. Use when the user asks to commit, create a branch, open a PR, tag a release, or perform any git operation. Also applies when mentions 'commit', 'branch', 'merge', 'release', 'hotfix', 'gitflow', 'conventional commit', 'semantic versioning', or 'semver'." -version: 1.3.0 +version: 1.4.0 license: MIT metadata: author: Qubernetic - version: 1.3.0 + version: 1.4.0 --- # Git Workflow Skill