Skip to content

Commit

Permalink
Merge branch 'gz-transport12' into mjcarroll/garden_bazel
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Aug 1, 2023
2 parents 1e4a819 + a1b1559 commit 8a755be
Show file tree
Hide file tree
Showing 30 changed files with 609 additions and 233 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Ubuntu Focal CI
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Compile and test
id: ci
uses: gazebo-tooling/action-gz-ci@focal
Expand All @@ -22,7 +22,7 @@ jobs:
name: Ubuntu Jammy CI
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Compile and test
id: ci
uses: gazebo-tooling/action-gz-ci@jammy
8 changes: 3 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-transport12 VERSION 12.1.0)
project(gz-transport12 VERSION 12.2.0)

#============================================================================
# Find gz-cmake
Expand Down Expand Up @@ -39,11 +39,9 @@ message(STATUS "\n\n-- ====== Finding Dependencies ======")

#--------------------------------------
# Find Protobuf
set(REQ_PROTOBUF_VER 3)
gz_find_package(GzProtobuf
VERSION ${REQ_PROTOBUF_VER}
REQUIRED
PRETTY Protobuf)
REQUIRED
PRETTY Protobuf)

#--------------------------------------
# Find ZeroMQ
Expand Down
178 changes: 0 additions & 178 deletions COPYING

This file was deleted.

64 changes: 62 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
## Gazebo Transport 12.X

### Gazebo Transport 12.2.0 (2023-04-19)

1. CI workflow: use checkout v3
* [Pull request #394](https://github.com/gazebosim/gz-transport/pull/394)

1. Rename COPYING to LICENSE
* [Pull request #392](https://github.com/gazebosim/gz-transport/pull/392)

1. Support clang and std::filesystem
* [Pull request #390](https://github.com/gazebosim/gz-transport/pull/390)

1. Added Node::RequestRaw
* [Pull request #351](https://github.com/gazebosim/gz-transport/pull/351)

1. Pass std::function by value to Node::Subscribe
* [Pull request #382](https://github.com/gazebosim/gz-transport/pull/382)

1. Prevent invoking callbacks after a node unsubscribes to a topic
* [Pull request #381](https://github.com/gazebosim/gz-transport/pull/381)

1. Suppress some Windows warnings
* [Pull request #367](https://github.com/gazebosim/gz-transport/pull/367)

1. Fix include/ignition/.../parameters header files
* [Pull request #374](https://github.com/gazebosim/gz-transport/pull/374)

1. Fix CLI configuration install path to ignition
* [Pull request #372](https://github.com/gazebosim/gz-transport/pull/372)

### Gazebo Transport 12.1.0 (2023-01-11)

1. Ignition to Gazebo renaming.
Expand Down Expand Up @@ -103,13 +132,33 @@

## Gazebo Transport 11.X

### Gazebo Transport 11.4.0 (2023-03-08)

1. Added Node::RequestRaw
* [Pull request #351](https://github.com/gazebosim/gz-transport/pull/351)

1. Suppress some Windows warnings.
* [Pull request #367](https://github.com/gazebosim/gz-transport/pull/367)

1. All changes up to version 8.2.0.

### Gazebo Transport 11.3.2 (2022-12-08)

1. Fix include/ignition/.../parameters header files
* [Pull request #374](https://github.com/gazebosim/gz-transport/pull/374)

### Gazebo Transport 11.3.1 (2022-12-01)

1. Fix CLI configuration install path to ignition
* [Pull request #372](https://github.com/gazebosim/gz-transport/pull/372)

### Gazebo Transport 11.3.0 (2022-10-31)

1. Add parameters component
* [Pull request #305](https://github.com/gazebosim/ign-transport/pull/305)
* [Pull request #305](https://github.com/gazebosim/gz-transport/pull/305)

1. Fix build for Debian Bullseye
* [Pull request #363](https://github.com/gazebosim/ign-transport/pull/363)
* [Pull request #363](https://github.com/gazebosim/gz-transport/pull/363)

### Gazebo Transport 11.2.0 (2022-08-16)

Expand Down Expand Up @@ -339,6 +388,17 @@
and publication, age, and reception statistics.
* [Pull request 205](https://github.com/gazebosim/gz-transport/pull/205)

### Gazebo Transport 8.4.0 (2022-11-17)

1. ign -> gz : Remove redundant namespace references.
* [Pull request #345](https://github.com/gazebosim/gz-transport/pull/345)

1. Backport Windows fix from main branch.
* [Pull request #350](https://github.com/gazebosim/gz-transport/pull/350)

1. ign -> gz Migrate Ignition Headers : gz-transport.
* [Pull request #347](https://github.com/gazebosim/gz-transport/pull/347)

### Gazebo Transport 8.3.0 (2022-07-27)

1. Ignition -> Gazebo
Expand Down
Loading

0 comments on commit 8a755be

Please sign in to comment.