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

Fix arch for nuget Linux Arm64 mapping #4150

Merged
merged 1 commit into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# librdkafka v2.0.1

librdkafka v2.0.1 is a bugfix release:

* Fixed nuget package for Linux ARM64 release (#4150).



# librdkafka v2.0.0

librdkafka v2.0.0 is a feature release:
Expand Down
2 changes: 1 addition & 1 deletion packaging/nuget/nugetpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class NugetPackage (Package):
'./usr/local/lib/librdkafka.so.1',
'runtimes/linux-x64/native/centos7-librdkafka.so'),
# Linux glibc centos7 arm64 without GSSAPI (no external deps)
Mapping({'arch': 'x64',
Mapping({'arch': 'arm64',
'plat': 'linux',
'dist': 'centos7',
'lnk': 'all'},
Expand Down