Skip to content

Commit

Permalink
build: set the shared library version to 1.0.0
Browse files Browse the repository at this point in the history
This marks the start of DSO versioning for libwallycore.so.
  • Loading branch information
jgriffiths committed Nov 19, 2023
1 parent d10ad57 commit eba90e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ libwallycore_la_INCLUDES = \
include/wally_transaction_members.h

if SHARED_BUILD_ENABLED
LT_VER_CURRENT = 0 # increment at every ABI change (whether breaking or non-breaking)
LT_VER_CURRENT = 1 # increment at every ABI change (whether breaking or non-breaking)
LT_VER_REVISION = 0 # increment at every release, but reset to 0 at every ABI change
LT_VER_AGE = 0 # increment at every ABI change, but reset to 0 if breaking
# The library filename will be "libwallycore.so.$((current-age)).$((age)).$((revision))",
Expand Down

0 comments on commit eba90e2

Please sign in to comment.