Skip to content

Commit

Permalink
Merge pull request #591 from JuliaRobotics/rd/bump-version
Browse files Browse the repository at this point in the history
Bump version to 2.2.1 and mark broken tests
  • Loading branch information
tkoolen authored Sep 3, 2020
2 parents fdb9e5a + c4180cd commit 6c40de7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ os:
- osx
julia:
- 1.3
- 1.4
- 1.5
- nightly
matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "RigidBodyDynamics"
uuid = "366cf18f-59d5-5db9-a4de-86a9f6786172"
version = "2.2.0"
version = "2.2.1"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
7 changes: 6 additions & 1 deletion test/test_mechanism_algorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,12 @@ end
end
point_jacobian!(J_point, x, p, point)
let x = x
@test @allocated(point_jacobian!(J_point, x, p, point)) == 0
if VERSION < v"1.5-"
@test @allocated(point_jacobian!(J_point, x, p, point)) == 0
else
# https://github.com/JuliaRobotics/RigidBodyDynamics.jl/issues/590
@test_broken @allocated(point_jacobian!(J_point, x, p, point)) == 0
end
end
J = geometric_jacobian(x, p)
T = Twist(J, velocity(x))
Expand Down

2 comments on commit 6c40de7

@rdeits
Copy link
Collaborator

@rdeits rdeits commented on 6c40de7 Feb 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/29086

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.2.1 -m "<description of version>" 6c40de7076d034c74e9d3a2cc66998b7c59f8b71
git push origin v2.2.1

Please sign in to comment.