Skip to content

Commit afe238a

Browse files
committed
Bump version to 0.3.0
1 parent ce63faa commit afe238a

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

bindings/luabinding.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the libmsclogparser project.
33
4-
Copyright (c) 2023 Digitalwave
4+
Copyright (c) 2023-2026 Digitalwave
55
66
Authors: Ervin Hegedüs <airween@digitalwave.hu>
77
@@ -53,7 +53,7 @@ modsecurity@digitalwave.hu
5353

5454
#include "msclogparser.h"
5555

56-
#define MODULE_VERSION "0.2.0"
56+
#define MODULE_VERSION "0.3.0"
5757

5858
int msclualogparser_parse (lua_State *L) {
5959
int n = lua_gettop(L);
@@ -241,7 +241,7 @@ int msclualogparser_parse (lua_State *L) {
241241
read_msclog_err(&l.lineerrpool, &logerr);
242242
lua_pushinteger(L, c+1);
243243
lua_pushstring(L, logerr.errmsg);
244-
lua_settable(L, errorstable);
244+
lua_settable(L, errorstable);
245245
}
246246
}
247247

@@ -326,6 +326,6 @@ int luaopen_msclualogparser(lua_State *L) {
326326
lua_pushstring(L, "MODULE_VERSION");
327327
lua_pushstring(L, MODULE_VERSION);
328328
lua_settable(L, -3);
329-
329+
330330
return 1;
331331
}

bindings/phpbinding.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the libmsclogparser project.
33
4-
Copyright (c) 2023 Digitalwave
4+
Copyright (c) 2023-2025 Digitalwave
55
66
Authors: Ervin Hegedüs <airween@digitalwave.hu>
77
@@ -53,12 +53,12 @@ modsecurity@digitalwave.hu
5353

5454
#include "msclogparser.h"
5555

56-
#define MODULE_VERSION "0.2.0"
56+
#define MODULE_VERSION "0.3.0"
5757

5858
extern zend_module_entry mscphplogparser_module_entry;
5959
# define phpext_mscphplogparser_ptr &mscphplogparser_module_entry
6060

61-
# define PHP_MSCPHPLOGPARSER_VERSION "0.2"
61+
# define PHP_MSCPHPLOGPARSER_VERSION "0.3"
6262

6363

6464
PHP_MINIT_FUNCTION(mscphplogparser);

bindings/pybinding.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the libmsclogparser project.
33
4-
Copyright (c) 2023 Digitalwave
4+
Copyright (c) 2023-2026 Digitalwave
55
66
Authors: Ervin Hegedüs <airween@digitalwave.hu>
77
@@ -52,7 +52,7 @@ modsecurity@digitalwave.hu
5252
#include "msclogparser.h"
5353

5454

55-
#define MODULE_VERSION "0.2.0"
55+
#define MODULE_VERSION "0.3.0"
5656

5757
static char mscpylogparser_parse_doc[] = "parse(line, len, type) - Parse a ModSecurity generated error.log.";
5858

bindings/rubybinding.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the libmsclogparser project.
33
4-
Copyright (c) 2023 Digitalwave
4+
Copyright (c) 2023-2026 Digitalwave
55
66
Authors: Ervin Hegedüs <airween@digitalwave.hu>
77
@@ -50,7 +50,7 @@ modsecurity@digitalwave.hu
5050

5151
#include "msclogparser.h"
5252

53-
#define MODULE_VERSION "0.2.0"
53+
#define MODULE_VERSION "0.3.0"
5454

5555
static VALUE mscrubylogparser_parse(VALUE self, VALUE arg1, VALUE arg2, VALUE arg3) {
5656

src/msclogparser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of the libmsclogparser project.
33
4-
Copyright (c) 2023 Digitalwave
4+
Copyright (c) 2023-2026 Digitalwave
55
66
Authors: Ervin Hegedüs <airween@digitalwave.hu>
77
@@ -50,7 +50,7 @@ modsecurity@digitalwave.hu
5050
#define MSCLOGPARSER_H
5151

5252
#define MSCLOGPARSER_MAJOR "0"
53-
#define MSCLOGPARSER_MINOR "2"
53+
#define MSCLOGPARSER_MINOR "3"
5454
#define MSCLOGPARSER_PATCH "0"
5555
#define MSCLOGPARSER_VERSION MSCLOGPARSER_MAJOR"."MSCLOGPARSER_MINOR"."MSCLOGPARSER_PATCH
5656

0 commit comments

Comments
 (0)