Skip to content

Commit b06157b

Browse files
authored
Add compat entries to Project.tomls (#80)
1 parent a9b2f79 commit b06157b

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorPkgSkeleton"
22
uuid = "3d388ab1-018a-49f4-ae50-18094d5f71ea"
33
authors = ["ITensor developers <support@itensor.org> and contributors"]
4-
version = "0.3.15"
4+
version = "0.3.16"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"

templates/benchmark/benchmark/benchmarks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using {PKGNAME}
21
using BenchmarkTools
2+
using {PKGNAME}
33

44
SUITE = BenchmarkGroup()
55
SUITE["rand"] = @benchmarkable rand(10)

templates/docs/docs/Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[deps]
2-
{PKGNAME} = "{UUID}"
32
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
43
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
4+
{PKGNAME} = "{UUID}"
5+
6+
[compat]
7+
Documenter = "1"
8+
Literate = "2"
9+
{PKGNAME} = "0.1"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[deps]
22
{PKGNAME} = "{UUID}"
3+
4+
[compat]
5+
{PKGNAME} = "0.1"

templates/test/test/Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[deps]
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3+
{PKGNAME} = "{UUID}"
34
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
45
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
56
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
67

78
[compat]
8-
Aqua = "0.8.9"
9+
Aqua = "0.8"
10+
{PKGNAME} = "0.1"
911
SafeTestsets = "0.1"
1012
Suppressor = "0.2"
1113
Test = "1.10"

0 commit comments

Comments
 (0)