Skip to content

Commit

Permalink
Bump ign-math to 6.6, add migration and changelog (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina authored Sep 22, 2020
1 parent f0707c9 commit 8e5f82e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ign_find_package(IgnProtobuf

#--------------------------------------
# Find ignition-math
ign_find_package(ignition-math6 REQUIRED)
ign_find_package(ignition-math6 REQUIRED VERSION 6.6)
set(IGN_MATH_VER ${ignition-math6_VERSION_MAJOR})

#--------------------------------------
Expand Down
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@

### Ignition Sensors 4.0.0 (20XX-XX-XX)

1. Replaced common::Time with std::chrono
* [Pull request 41](https://github.com/ignitionrobotics/ign-sensors/pull/41)

1. GitHub migration
* [Pull request 12](https://github.com/ignitionrobotics/ign-sensors/pull/12)
* [Pull request 16](https://github.com/ignitionrobotics/ign-sensors/pull/16)
* [Pull request 22](https://github.com/ignitionrobotics/ign-sensors/pull/22)

1. Set camera sensor visibility mask
* [BitBucket pull request 115](https://osrf-migration.github.io/ignition-gh-pages/#!/ignitionrobotics/ign-sensors/pull-requests/115)

1. Depend on ign-rendering4
* [BitBucket pull request 111](https://osrf-migration.github.io/ignition-gh-pages/#!/ignitionrobotics/ign-sensors/pull-requests/111)

1. Depend on ign-msgs6, ign-transport9, sdf10
* [Pull request 31](https://github.com/ignitionrobotics/ign-sensors/pull/31)

## Ignition Sensors 3

### Ignition Sensors 3.0.0 (2019-12-10)
Expand Down
18 changes: 18 additions & 0 deletions Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ notification to users that their code should be upgraded. The next major
release will remove the deprecated code.


## Ignition Sensors 3.X to 4.X

1. **include/sensors/Sensor.hh**
+ ***Deprecation*** virtual bool Update(const ignition::common::Time &)
+ ***Replacement*** virtual bool Update(const std::chrono::steady_clock::duration &)
+ ***Deprecation*** virtual bool Update(const ignition::common::Time &, const bool)
+ ***Replacement*** virtual bool Update(const std::chrono::steady_clock::duration &, const bool)
+ ***Deprecation*** ignition::common::Time NextUpdateTime() const
+ ***Replacement*** std::chrono::steady_clock::duration NextDataUpdateTime() const

1. **include/sensors/Manager.hh**
+ ***Deprecation*** void RunOnce(const ignition::common::Time &, bool);
+ ***Replacement*** void RunOnce(const std::chrono::steady_clock::duration &, bool)

1. **include/sensors/Lidar.hh**
+ ***Deprecation*** virtual bool PublishLidarScan(const ignition::common::Time &)
+ ***Replacement*** virtual bool PublishLidarScan(const std::chrono::steady_clock::duration &)

## Ignition Sensors 2.X to 3.X

### Additions
Expand Down

0 comments on commit 8e5f82e

Please sign in to comment.