Skip to content

Commit

Permalink
Version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vinipsmaker committed Feb 27, 2014
1 parent 78af3a2 commit a73658b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(tufao)

# Metadata
set(TUFAO_VERSION_MAJOR 1)
set(TUFAO_VERSION_MINOR 1)
set(TUFAO_VERSION_MINOR 2)
set(TUFAO_VERSION_PATCH 0)
set(TUFAO_VERSION ${TUFAO_VERSION_MAJOR}.${TUFAO_VERSION_MINOR}.${TUFAO_VERSION_PATCH})
set(TUFAO_BRIEF "An asynchronous web framework for C++ built on top of Qt")
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ You can also see Tufão documentation integrated in QtAssistant.

## NEWS

Version 1.2
* New class to handle REST api introduced (thanks to Timothy Reaves)
* The class has its own plugin system, partly incompatible with Tufão's
default
* Tufão's plugin system improved to better track files deletion.
* It requires no code changes, but you still need to do a one-line change
to the config file, because I was worried about backwards compatibility.
* See HttpPluginServer::setConfig for details

Version 1.1

* Add ability to ignore a set of SSL errors in WebSocket
Expand Down
2 changes: 1 addition & 1 deletion src/tufao_global.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#endif

#ifndef TUFAO_VERSION_MINOR
# define TUFAO_VERSION_MINOR 1
# define TUFAO_VERSION_MINOR 2
#endif

#endif // TUFAO_GLOBAL_H

0 comments on commit a73658b

Please sign in to comment.