Skip to content

Commit 96d4511

Browse files
committed
apply gap_to_julia and bump versions
* CAP v0.5.1 * CartesianCategories v0.3.1 * FinSetsForCAP v0.1.8 * FreydCategoriesForCAP v0.1.6 * LinearAlgebraForCAP v0.1.5 * ModulePresentationsForCAP v0.1.4 * MonoidalCategories v0.2.2 * Toposes v0.1.7 * ZXCalculusForCAP v0.1.5
1 parent 5f75690 commit 96d4511

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
"Sebastian Posur <sebastian.posur@uni-muenster.de>",
88
"Fabian Zickgraf <f.zickgraf@dashdos.com>",
99
]
10-
version = "0.2.1"
10+
version = "0.2.2"
1111

1212
[deps]
1313
CAP = "d64df2ee-d2bb-46f4-8cbc-f03bb858f8cb"

makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,13 @@ clean-gen:
1111

1212
test:
1313
julia -e 'using Pkg; Pkg.test("MonoidalCategories");'
14+
15+
codecov:
16+
julia --project=. -e 'using Coverage; using Pkg; Pkg.test(coverage=true); LCOV.writefile("coverage.lcov", process_folder(pwd()));'
17+
genhtml -o coverage_report coverage.lcov
18+
open coverage_report/index.html
19+
20+
clean-codecov:
21+
find . -type f -name "*.jl.*.cov" -exec rm -f {} +
22+
rm -f coverage.lcov
23+
rm -rf coverage_report

0 commit comments

Comments
 (0)