Skip to content

Commit

Permalink
Updates the CHANGES files
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Zimmerle committed Dec 22, 2017
1 parent 9fbcc24 commit c0ae166
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CHANGES
@@ -1,5 +1,6 @@
DD mmm YYYY - 1.0.0

v1.0.0 - 2017-Dec-20
--------------------

* First version of the ModSecurity-nginx
[Felipe Zimmerle]
- First version of ModSecurity-nginx connector

20 changes: 20 additions & 0 deletions release.sh
@@ -0,0 +1,20 @@
#!/bin/bash

git clean -xfdi
git submodule foreach --recursive git clean -xfdi

VERSION=`git describe --tags`
DIR_NAME="modsecurity-nginx-$VERSION"
TAR_NAME="modsecurity-nginx-$VERSION.tar.gz"

MY_DIR=${PWD##*/}

cd ..
tar --transform "s/^$MY_DIR/$DIR_NAME/" -cvzf $TAR_NAME --exclude .git $MY_DIR

sha256sum $TAR_NAME > $TAR_NAME.sha256
gpg --detach-sign -a $TAR_NAME

cd -
echo $TAR_NAME ": done."

28 changes: 28 additions & 0 deletions src/ngx_http_modsecurity_common.h
Expand Up @@ -26,6 +26,34 @@
#include <modsecurity/transaction.h>
#include <modsecurity/rules.h>


/**
* TAG_NUM:
*
* Alpha - 001
* Beta - 002
* Dev - 010
* Rc1 - 051
* Rc2 - 052
* ... - ...
* Release- 100
*
*/

#define MODSECURITY_NGINX_MAJOR "1"
#define MODSECURITY_NGINX_MINOR "0"
#define MODSECURITY_NGINX_PATCHLEVEL "0"
#define MODSECURITY_NGINX_TAG ""
#define MODSECURITY_NGINX_TAG_NUM "100"

#define MODSECURITY_NGINX_VERSION MODSECURITY_NGINX_MAJOR "." \
MODSECURITY_NGINX_MINOR "." MODSECURITY_NGINX_PATCHLEVEL \
MODSECURITY_NGINX_TAG

#define MODSECURITY_NGINX_VERSION_NUM MODSECURITY_NGINX_MAJOR \
MODSECURITY_NGINX_MINOR MODSECURITY_NGINX_PATCHLEVEL \
MODSECURITY_NGINX_TAG_NUM

typedef struct {
ngx_str_t name;
ngx_str_t value;
Expand Down

0 comments on commit c0ae166

Please sign in to comment.