Conversation
jpnurmi
added this pull request to stack #2106
September 17, 2026 13:24
jpnurmi
force-pushed
the
jpnurmi/build/so-version
branch
2 times, most recently
from
September 17, 2026 14:13
076dc30 to
c0987c9
Compare
jpnurmi
force-pushed
the
jpnurmi/build/so-version
branch
2 times, most recently
from
September 17, 2026 16:01
3dfb508 to
5b4b6de
Compare
jpnurmi
force-pushed
the
jpnurmi/build/so-version
branch
from
September 17, 2026 16:11
5b4b6de to
7ef38df
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 7ef38df. Configure here.
jpnurmi
force-pushed
the
jpnurmi/build/so-version
branch
from
September 17, 2026 16:27
7ef38df to
584534b
Compare
Set CMake [`VERSION`](https://cmake.org/cmake/help/latest/prop_tgt/VERSION.html) and [`SOVERSION`](https://cmake.org/cmake/help/latest/prop_tgt/SOVERSION.html) properties. Close: #1428
jpnurmi
force-pushed
the
jpnurmi/build/so-version
branch
from
September 17, 2026 16:31
584534b to
54e9245
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2103 +/- ##
==========================================
+ Coverage 74.83% 74.85% +0.01%
==========================================
Files 103 103
Lines 27386 27386
Branches 4944 4944
==========================================
+ Hits 20494 20499 +5
+ Misses 5543 5539 -4
+ Partials 1349 1348 -1 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Set CMake
VERSIONandSOVERSIONproperties to indicate the major release and ABI-compatibility versions.Caution
Breaking / Important behavior change
macOS/Linux: shared libraries now use ABI-versioned filenames, such as
libsentry.1.dyliborlibsentry.so.1for 1.x. Windows, Android, and static libraries remain unchanged.NOTE: Applications must package the real versioned library and its symlinks, including
libsentry.1.dyliborlibsentry.so.1, because they link to and load the ABI-versioned name.Close: #1428