Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Feb 6, 2023
1 parent b7b3533 commit 3e5550d
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)

set (CMAKE_CXX_STANDARD 17)

project (logfilegen VERSION 1.0.0 LANGUAGES CXX)
project (logfilegen VERSION 1.1.0 LANGUAGES CXX)
add_definitions(-DVERSION_NUMBER="\\"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}\\"")


Expand Down
12 changes: 12 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
What's new?
The new release is slighty faster. Two new macros were added: @meta and @seq. All of them are described at the documentation, here in a short - @meta allows to combine several macros into one, so we can use more than one macro at the simple (non-sequenced) variable value. And @seq can be used to use sequences at macro, as in the usual variable value.

Example 001:

$test=@seq:GET:PUT
$logstring=hello, $test

Example 002:

$test=@meta:foo (@str:12) bar (@int:12:16) (@ip)
$logstring=hello, $test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The server log file generator

[Dockerhub repo](https://hub.docker.com/r/psemiletov/logfilegen/general)

[AUR](https://aur.archlinux.org/packages/logfilegen)
[AUR](https://aur.archlinux.org/packages/logfilegen), [openSUSE](https://software.opensuse.org/package/logfilegen)


## ABOUT
Expand Down
6 changes: 5 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ Logfilegen is a fast and highly customizable tool to generate common server (ngi

## LINKS

[Github repo](https://github.com/psemiletov/logfilegen)
[Github repo](https://github.com/psemiletov/logfilegen), [Latest release](https://github.com/psemiletov/logfilegen/releases/latest)

[Dockerhub repo](https://hub.docker.com/r/psemiletov/logfilegen/general)

[AUR](https://aur.archlinux.org/packages/logfilegen), [openSUSE](https://software.opensuse.org/package/logfilegen)


## NEWS

***06 february 2023, 1.1.0*** - The new release is slighty faster. Two new macros were added: @meta and @seq. All of them are described at the documentation, here in a short - @meta allows to combine several macros into one, so we can use more than one macro at the simple (non-sequenced) variable value. And @seq can be used to use sequences at macro, as in the usual variable value.

## MANUAL

To install it, please read [Installation guide](inst.md)
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


#ifndef VERSION_NUMBER
#define VERSION_NUMBER "1.0.0"
#define VERSION_NUMBER "1.1.0"
#endif


Expand Down
7 changes: 0 additions & 7 deletions templates/example-nginx-test.tp

This file was deleted.

0 comments on commit 3e5550d

Please sign in to comment.