Skip to content

Commit 7811b04

Browse files
committed
Merge branch 'main' into next
2 parents 9af4d09 + d930d08 commit 7811b04

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## [0.1.6](https://github.com/FullStackWithLawrence/agentic-ai-workflow/compare/v0.1.5...v0.1.6) (2026-04-02)
8+
9+
### Bug Fixes
10+
11+
- force a new release ([0f60ec7](https://github.com/FullStackWithLawrence/agentic-ai-workflow/commit/0f60ec7c9a9c15a83bd74315ed0271ae49c36d3f))
12+
113
## [0.1.5](https://github.com/FullStackWithLawrence/agentic-ai-workflow/compare/v0.1.4...v0.1.5) (2025-10-16)
214

315
### Bug Fixes
@@ -10,12 +22,6 @@
1022

1123
- add codecove badge ([231bbeb](https://github.com/FullStackWithLawrence/agentic-ai-workflow/commit/231bbeb400d0e1b2eabe3bf4fd1e4467fe017d72))
1224

13-
# Change Log
14-
15-
All notable changes to this project will be documented in this file.
16-
17-
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
18-
1925
## [0.1.3](https://github.com/FullStackWithLawrence/agentic-ai-workflow/compare/v0.1.2...v0.1.3) (2025-10-16)
2026

2127
### Bug Fixes

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL maintainer="Lawrence McDaniel <lpm0073@gmail.com>" \
77
license="GNU AGPL v3" \
88
vcs-url="https://github.com/FullStackWithLawrence/agentic-ai-workflow" \
99
org.opencontainers.image.title="StackademyAssistent" \
10-
org.opencontainers.image.version="0.1.5" \
10+
org.opencontainers.image.version="0.1.6" \
1111
org.opencontainers.image.authors="Lawrence McDaniel <lpm0073@gmail.com>" \
1212
org.opencontainers.image.url="https://FullStackWithLawrence.github.io/agentic-ai-workflow/" \
1313
org.opencontainers.image.source="https://github.com/FullStackWithLawrence/agentic-ai-workflow" \

app/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
# DO NOT EDIT.
33
# Managed via automated CI/CD in .github/workflows/semanticVersionBump.yml.
4-
__version__ = "0.1.5"
4+
__version__ = "0.1.6"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "StackademyAI"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
requires-python = ">=3.10"
55
description = "StackademyAI: an AI-powered marketing agent"
66
authors = [{ name = "Lawrence McDaniel", email = "lpm0073@gmail.com" }]

release.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ module.exports = {
99
changelogFile: "CHANGELOG.md",
1010
},
1111
],
12+
[
13+
"@semantic-release/changelog",
14+
{
15+
changelogFile: "CHANGELOG.md",
16+
changelogTitle: `# Change Log\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).\n\n`,
17+
},
18+
],
1219
"@semantic-release/github",
1320
[
1421
"@semantic-release/exec",

0 commit comments

Comments
 (0)