Skip to content

Commit c21592f

Browse files
authored
Merge pull request #8 from schillic/main
Raise IntervalArithmetic bounds to v1
2 parents 379dbb9 + 3f5eb28 commit c21592f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name = "IntervalBoxes"
22
uuid = "43d83c95-ebbb-40ec-8188-24586a1458ed"
3-
version = "0.2.2"
3+
version = "0.2.3"
44

55
[deps]
66
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
77
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
88

99
[compat]
10-
IntervalArithmetic = "^0.22.12"
10+
IntervalArithmetic = "0.22.12 - 1"
1111
StaticArrays = "1"
1212
julia = "1.9"

test/display.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using Test
1313
@test s == "[1.0, 2.0] × [3.0, 4.0]"
1414

1515
X = bareinterval.(IntervalBox(1.1..1.2, 2.1..2.2))
16-
@test string(X) == "[1.09999, 1.20001] × [2.09999, 2.20001]"
16+
@test string(X) == "[1.1, 1.2] × [2.1, 2.2]"
1717

1818
X = bareinterval.(IntervalBox(-Inf..Inf, -Inf..Inf))
1919
@test string(X) == "(-∞, ∞)²"

0 commit comments

Comments
 (0)