Skip to content

Commit c59f5bd

Browse files
committed
Dependencies update; bump to 0.5.1
* Drop Compat * LinearAlgebra is a dependency * Add more precise bounds for Rotations
1 parent b1f8d46 commit c59f5bd

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

Project.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
name = "CoordinateTransformations"
22
uuid = "150eb455-5306-5404-9cee-2592286d6298"
3-
version = "0.5.0"
3+
version = "0.5.1"
44

55
[deps]
6-
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
76
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
87
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99

1010
[compat]
11+
Rotations = "0.10,0.11,0.12,0.13"
12+
StaticArrays = "0.11,0.12"
1113
julia = "1"
12-
Rotations = "0"
13-
StaticArrays = "0.12"
14-
Compat = "0.69, 1, 2, 3"
1514

1615
[extras]
17-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1816
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
17+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1918

2019
[targets]
2120
test = ["Test", "ForwardDiff"]

src/CoordinateTransformations.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
VERSION < v"0.7.0-beta2.199" && __precompile__()
2-
31
module CoordinateTransformations
42

53
using StaticArrays
6-
using Compat.LinearAlgebra
7-
using Compat
4+
using LinearAlgebra
85

96
using Rotations
107
export RotMatrix, Quat, SpQuat, AngleAxis, RodriguesVec,

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using Compat.Test
2-
using Compat.LinearAlgebra
1+
using Test
2+
using LinearAlgebra
33
using CoordinateTransformations
44
using ForwardDiff: Dual, partials
55
using StaticArrays

0 commit comments

Comments
 (0)