Skip to content

Commit c94952e

Browse files
committed
Corrected version notices
1 parent 5a1b768 commit c94952e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ ifeq ($(CXX_FUNCTIONS),true)
9696
endif
9797

9898
ifeq ($(shell uname -s),Darwin)
99-
LDFLAGS += -current_version 1.2 -compatibility_version 1
99+
LDFLAGS += -current_version 2.0 -compatibility_version 1
100100
OBJS += $(DARWIN_OBJS)
101101
DEPS += $(DARWIN_DEPS)
102102

include/callstack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ struct callstack_frame * callstack_getBinaries(struct callstack * self);
171171
*
172172
* @param self the callstack object
173173
* @return an array of translated callstack frames
174-
* @since v1.3
174+
* @since v2.0
175175
*/
176176
struct callstack_frame* callstack_getBinariesCached(struct callstack* self);
177177
#endif

include/callstack_frame.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ struct callstack_frame {
3838
/**
3939
* Reserved value.
4040
*
41-
* @since v1.3
41+
* @since v2.0
4242
*/
4343
void* reserved;
4444
/**
4545
* Reserved value.
4646
*
47-
* @since v1.3
47+
* @since v2.0
4848
*/
4949
bool reserved1;
5050

@@ -68,7 +68,7 @@ struct callstack_frame {
6868
/**
6969
* Indicates whether the binary file is the CallstackLibrary itself.
7070
*
71-
* @since v1.3
71+
* @since v2.0
7272
*/
7373
bool binaryFileIsSelf;
7474
/** The line number in the source file this frame is on. */

0 commit comments

Comments
 (0)