Skip to content

Commit 8d882e3

Browse files
authored
Merge branch 'JuliaArrays:master' into update-docs
2 parents aad423a + 91eeb42 commit 8d882e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "AxisArrays"
22
uuid = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
3-
version = "0.4.7"
3+
version = "0.4.8"
44

55
[deps]
66
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/intervals.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ end
4646
# (<, <=, and ==) are a pain since they are non-promoting fallbacks that call
4747
# isless, !(y < x) (which is wrong), and ===. So implementing promotion with
4848
# Union{T, ClosedInterval} causes stack overflows for the base types. This is safer:
49-
for f in (:isless, :(<=), :(>=), :(==), :(+), :(-), :(*), :(/), :(//))
49+
for f in (:isless, :(<=), :(==), :(+), :(-), :(*), :(/), :(//))
5050
# We don't use promote here, though, because promotions can be lossy... and
5151
# that's particularly bad for comparisons. Just make an interval instead.
5252
@eval $(f)(x::ClosedInterval, y::Scalar) = $(f)(x, y..y)

0 commit comments

Comments
 (0)