Skip to content

Commit e768b3f

Browse files
committed
Change API versioning method
1 parent 88cdbdb commit e768b3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

call.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// driver version
55

66
static void commandVersion() {
7-
pipe_output_write_string(it_version);
7+
pipe_output_write_string(it_api_version);
88
pipe_output_flush();
99
}
1010

terminal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
// main
77

8-
extern char *it_version;
8+
extern char *it_api_version;
99

1010
extern GtkApplication *app;
1111
extern GtkWidget *top;

version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
char *it_version = "0.5.1";
1+
char *it_api_version = "api-6";

0 commit comments

Comments
 (0)