Skip to content

Commit

Permalink
Bump to 9.4.0 (#441)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
Signed-off-by: Louise Poubel <[email protected]>

Co-authored-by: Louise Poubel <[email protected]>
  • Loading branch information
scpeters and chapulina authored Jan 12, 2021
1 parent 32d96a6 commit 938b541
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:

env:
PACKAGE: sdformat8
PACKAGE: sdformat9
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ project (sdformat9)
set (SDF_PROTOCOL_VERSION 1.7)

set (SDF_MAJOR_VERSION 9)
set (SDF_MINOR_VERSION 3)
set (SDF_MINOR_VERSION 4)
set (SDF_PATCH_VERSION 0)

set (SDF_VERSION ${SDF_MAJOR_VERSION}.${SDF_MINOR_VERSION})
Expand Down
55 changes: 49 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,51 @@
## SDFormat 9.X
## libsdformat 9.X

### SDFormat 9.X.X (202X-XX-XX)
### libsdformat 9.X.X (202X-XX-XX)

### SDFormat 9.3.0 (2020-XX-XX)
### libsdformat 9.4.0 (2021-01-08)

1. Define `PATH_MAX` for Debian Hurd system
* [Pull request 369](https://github.com/osrf/sdformat/pull/369)

1. Fix supported shader types (`normal_map_X_space`)
* [Pull request 383](https://github.com/osrf/sdformat/pull/383)

1. Move list of debian dependencies to packages.apt
* [Pull request 392](https://github.com/osrf/sdformat/pull/392)

1. Enable/disable tests for issue #202, add macOS workflow
* [Pull request 414](https://github.com/osrf/sdformat/pull/414)
* [Pull request 438](https://github.com/osrf/sdformat/pull/438)
* [Issue 202](https://github.com/osrf/sdformat/issues/202)

1. Test included model folder missing model.config
* [Pull request 422](https://github.com/osrf/sdformat/pull/422)

1. Prefix nested model names when flattening
* [Pull request 399](https://github.com/osrf/sdformat/pull/399)

1. Add Sky DOM
* [Pull request 417](https://github.com/osrf/sdformat/pull/417)
* [Pull request 397](https://github.com/osrf/sdformat/pull/397)

1. camera.sdf: decrease far clip lower bound
* [Pull request 435](https://github.com/osrf/sdformat/pull/435)

1. material.sdf: add `double_sided` parameter
* [Pull request 410](https://github.com/osrf/sdformat/pull/410)

1. Migration to GitHub: CI, links...
* [Pull request 239](https://github.com/osrf/sdformat/pull/239)
* [Pull request 310](https://github.com/osrf/sdformat/pull/310)
* [Pull request 390](https://github.com/osrf/sdformat/pull/390)

1. Fix Actor copy operators and increase test coverage.
* [Pull request 301](https://github.com/osrf/sdformat/pull/301)

1. Add Heightmap class
* [Pull request 388](https://github.com/osrf/sdformat/pull/388)

### libsdformat 9.3.0 (2020-XX-XX)

1. Store material file path information.
+ [Pull request 349](https://github.com/osrf/sdformat/pull/349)
Expand Down Expand Up @@ -43,7 +86,7 @@
* [BitBucket pull request 677](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/677)
* [BitBucket pull request 686](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/686)

### SDFormat 9.2.0 (2020-04-02)
### libsdformat 9.2.0 (2020-04-02)

1. Remove URI scheme, if present, when finding files.
* [BitBucket pull request 650](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/650)
Expand Down Expand Up @@ -101,7 +144,7 @@
1. Rename SDF to SDFormat / libsdformat on documentation
* [BitBucket pull request 666](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/666)

### SDFormat 9.1.0 (2020-01-29)
### libsdformat 9.1.0 (2020-01-29)

1. Remove URI scheme, if present, when finding files.
* [BitBucket pull request 653](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/653)
Expand Down Expand Up @@ -148,7 +191,7 @@
1. Keep DOM objects even if they were loaded with errors.
* [BitBucket pull request 655](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/655)

### SDFormat 9.0.0 (2019-12-10)
### libsdformat 9.0.0 (2019-12-10)

1. Move recursiveSameTypeUniqueNames from ign.cc to parser.cc and make public.
* [BitBucket pull request 606](https://osrf-migration.github.io/sdformat-gh-pages/#!/osrf/sdformat/pull-requests/606)
Expand Down
16 changes: 15 additions & 1 deletion Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,21 @@ forward programmatically.
This document aims to contain similar information to those files
but with improved human-readability..

## SDFormat 9.0 to 9.3
## libsdformat 9.3 to 9.4

### Modifications

1. **camera.sdf**
+ Reduce minimum value of `//camera/clip/far`

### Deprecations

1. Fix spelling of supported shader types in `//material/shader/@type`
+ `normal_map_objectspace` replaced by `normal_map_object_space`
+ `normal_map_tangentspace` replaced by `normal_map_tangent_space`
+ [pull request 383](https://github.com/osrf/sdformat/pull/383)

## libsdformat 9.0 to 9.3

### Additions

Expand Down

0 comments on commit 938b541

Please sign in to comment.