Skip to content

Commit c619086

Browse files
committed
Bump version to 1.0.0 in shmfile.c
1 parent 751762b commit c619086

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shmfile.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
#define IS_FSHM_FLAGS_GUEST(_fshm_flags) !!( _fshm_flags & FSHM_GUEST )
5858

5959

60-
static volatile const char *copyright = "Copyright (c) 2017 Timothy Savannah All Rights Reserved, licensed under terms of Lesser GNU Public License version 2.1";
60+
static volatile const char *copyright = "Copyright (c) 2017, 2018 Timothy Savannah All Rights Reserved, licensed under terms of Lesser GNU Public License version 2.1";
6161

6262
static volatile const char *product_name = "shmfile";
63-
static volatile const char *version = "Version 0.1.1";
63+
static volatile const char *version = "Version 1.0.0";
6464

6565
typedef struct {
6666
unsigned char major;
@@ -69,7 +69,7 @@ typedef struct {
6969
const char *extra;
7070
}_shmfile_version_info_t;
7171

72-
static volatile _shmfile_version_info_t _shmfile_version_info = { (unsigned char)0, (unsigned char)1, (unsigned char)1, "" };
72+
static volatile _shmfile_version_info_t _shmfile_version_info = { (unsigned char)1, (unsigned char)0, (unsigned char)0, "" };
7373

7474

7575
void shmfile_get_version(unsigned char *major, unsigned char *minor, unsigned char *patchlevel, const char **extra)

0 commit comments

Comments
 (0)