6 Commits
0.1.1 ... 0.1.4

Author SHA1 Message Date
45bcbfe80d release: version 0.1.4 🚀
All checks were successful
Upload Python Package / Create Release (push) Successful in 15s
Upload Python Package / deploy (push) Successful in 1m5s
2026-04-02 02:09:40 +02:00
d82b811e55 fix: fix container build, refs NOISSUE 2026-04-02 02:09:35 +02:00
b10c34f3fc release: version 0.1.3 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 21s
Upload Python Package / deploy (push) Failing after 39s
2026-04-02 02:04:42 +02:00
f7b8925881 fix: fix version increment logic, refs NOISSUE 2026-04-02 02:04:39 +02:00
78c8bd68cc release: version 0.1.2 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 26s
Upload Python Package / deploy (push) Failing after 22s
2026-04-02 02:03:23 +02:00
f17e241871 fix: test version increment logic, refs NOISSUE 2026-04-02 02:03:21 +02:00
4 changed files with 36 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ start() {
echo "New version: $new_version" echo "New version: $new_version"
gitchangelog | grep -v "[rR]elease:" > HISTORY.md gitchangelog | grep -v "[rR]elease:" > HISTORY.md
echo $new_version > ai_test/VERSION echo $new_version > ai_software_factory/VERSION
git add ai_software_factory/VERSION HISTORY.md git add ai_software_factory/VERSION HISTORY.md
git commit -m "release: version $new_version 🚀" git commit -m "release: version $new_version 🚀"
echo "creating git tag : $new_version" echo "creating git tag : $new_version"

View File

@@ -1,6 +1,6 @@
FROM alpine FROM alpine
WORKDIR /app WORKDIR /app
COPY ./ai_test/* /app COPY ./ai_software_factory/* /app
CMD ["sh", "/app/hello_world.sh"] CMD ["sh", "/app/hello_world.sh"]

View File

@@ -5,10 +5,43 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Fix container build, refs NOISSUE. [Simon Diesenreiter]
0.1.3 (2026-04-02)
------------------
Fix
~~~
- Fix version increment logic, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.2 (2026-04-02)
------------------
Fix
~~~
- Test version increment logic, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.1 (2026-04-01)
------------------
Fix Fix
~~~ ~~~
- Broken CI build, refs NOISSUE. [Simon Diesenreiter] - Broken CI build, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.0 (2026-04-01) 0.1.0 (2026-04-01)
------------------ ------------------

View File

@@ -1 +1 @@
1.0.0 0.1.4