Skip to content

Commit

Permalink
Finish 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Wiedebach committed Mar 25, 2019
2 parents 91c70a0 + f5a92ae commit fc8fb09
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ The test coverage for the package `us.ihmc.ekf.filter`

To use the release of this package add the following to your gradle dependencies:

`compile group: "us.ihmc", name: "ekf", version: "0.2.5"`
`compile group: "us.ihmc", name: "ekf", version: "0.2.6"`

`compile group: "us.ihmc", name: "ekf-test", version: "0.2.5"`
`compile group: "us.ihmc", name: "ekf-test", version: "0.2.6"`

`compile group: "us.ihmc", name: "ekf-visualizers", version: "0.2.5"`
`compile group: "us.ihmc", name: "ekf-visualizers", version: "0.2.6"`

Note, that usually you will only need the main dependency. The others will provide you with tests and some example simulations.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

ihmc {
group = "us.ihmc"
version = "0.2.5"
version = "0.2.6"
openSource = true

configureDependencyResolution()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public JointVelocitySensor(String jointName, double dt, YoVariableRegistry regis
this(jointName, FilterTools.stringToPrefix(jointName), dt, registry);
}

JointVelocitySensor(String jointName, String parameterGroup, double dt, YoVariableRegistry registry)
public JointVelocitySensor(String jointName, String parameterGroup, double dt, YoVariableRegistry registry)
{
this.jointName = jointName;
this.sqrtHz = 1.0 / Math.sqrt(dt);
Expand Down

0 comments on commit fc8fb09

Please sign in to comment.