Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support message headers #10

Merged
merged 24 commits into from
Nov 5, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
78da22f
message headers supported
kwitekrac Oct 22, 2023
7548760
queue create and bind split
kwitekrac Oct 22, 2023
6642c9f
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 22, 2023
2456088
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 22, 2023
e69b42a
code formatted
kwitekrac Oct 23, 2023
2318132
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 23, 2023
d74ea7a
received headers type decode
kwitekrac Oct 24, 2023
335d16c
Merge branch 'support-message-headers' of https://github.com/zaphiro-…
kwitekrac Oct 24, 2023
36632e4
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 24, 2023
f7541d9
more types of message headers supported in consume
kwitekrac Oct 24, 2023
1611c57
Merge branch 'support-message-headers' of https://github.com/zaphiro-…
kwitekrac Oct 24, 2023
d7e5c26
publish message with headers works
kwitekrac Oct 28, 2023
7368871
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 28, 2023
70c1244
code restructured
kwitekrac Oct 28, 2023
d133562
Merge branch 'support-message-headers' of https://github.com/zaphiro-…
kwitekrac Oct 28, 2023
04ad862
added passive parameter exported functions
kwitekrac Oct 30, 2023
5800539
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Oct 30, 2023
7fdb5f3
Update CMakeLists.txt
kdevelleZ Oct 31, 2023
79de6c8
Merge branch 'support-message-headers' of https://github.com/zaphiro-…
kdevelleZ Oct 31, 2023
c65569f
docs(release_notes): update RELEASE_NOTES.md
kdevelleZ Oct 31, 2023
011471d
Update labview_rabbitmq.c
kwitekrac Nov 2, 2023
c286d07
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Nov 2, 2023
46ffb2f
fixed style issues reported in PR review
kwitekrac Nov 5, 2023
e2a9bd1
docs(release_notes): update RELEASE_NOTES.md
kwitekrac Nov 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .vscode/settings.json
kdevelleZ marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"files.associations": {
"optional": "c",
"istream": "c",
"ostream": "c",
"ratio": "c",
"system_error": "c",
"array": "c",
"functional": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c",
"chrono": "c",
"algorithm": "c",
"sstream": "c",
"random": "c",
"*.tcc": "c",
"memory_resource": "c",
"fstream": "c",
"memory": "c",
"labview_types.h": "c"
}
}
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ option(BUILD_SHARED_LIBS "Build rabbitmq-c as a shared library" ON)
option(BUILD_STATIC_LIBS "Build rabbitmq-c as a static library" ON)
option(INSTALL_STATIC_LIBS "Install rabbitmq-c static library" ON)

option(BUILD_EXAMPLES "Build Examples" OFF)
option(BUILD_EXAMPLES "Build Examples" ON)
option(BUILD_LABVIEW "Build LabVIEW shared library" ON)
option(BUILD_TOOLS "Build Tools (requires POPT Library)" OFF)
cmake_dependent_option(BUILD_TOOLS_DOCS "Build man pages for tools (requires xmlto)" OFF "BUILD_TOOLS" OFF)
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# rabbitmq-c Release Notes

## 0.0.1-dev - 2023-08-07
## 0.0.1-dev - 2023-10-31

### Features

- Support message headers (PR #10 by @kwitekrac)
- LabVIEW support (PR #8 by @kwitekrac)

### Continuous Integration
Expand Down
2 changes: 2 additions & 0 deletions labview/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

set(RABBITMQ_LV_SOURCES
labview_rabbitmq.c
labview_types.c labview_types.h
msg_headers.c msg_headers.h
utils.c utils.h
unix/platform_utils.c
)
Expand Down
Loading