Skip to content

Commit 65d26af

Browse files
Update to new versions
1 parent de91f5d commit 65d26af

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ authors = [
88
"Fabian Zickgraf <f.zickgraf@dashdos.com>"
99
]
1010

11-
# Transpiled from GAP's MonoidalCategories v2025.08-02
12-
version = "0.2.12"
11+
# Transpiled from GAP's MonoidalCategories v2025.12-01
12+
version = "0.2.13"
1313

1414
[deps]
1515
CAP = "d64df2ee-d2bb-46f4-8cbc-f03bb858f8cb"

makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ gen-full:
2222
./.generate.sh -e gen_full=1
2323

2424
git-commit:
25-
@if [ -n "$$(git diff .)" ]; then \
26-
echo "Committing changes ..."; \
25+
@if git diff Project.toml | grep -q '^+version ='; then \
26+
echo -e "\033[32mCommitting changes in \"MonoidalCategories\"\033[0m"; \
2727
git add .; \
2828
git commit \
2929
-m "Update to GAP's $$(grep "# Transpiled from GAP's" "Project.toml" | cut -d ' ' -f 5-)" \
3030
-m "Bump Version to v$$(grep "version = " "Project.toml" | cut -d '"' -f 2)" \
3131
; \
3232
else \
33-
echo "No changes to commit."; \
33+
echo -e "\033[33mNo changes in \"MonoidalCategories\" to commit or no version bump detected.\033[0m"; \
3434
fi
3535

3636
codecov:

0 commit comments

Comments
 (0)