File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
3
3
project (ada
4
4
DESCRIPTION "Fast spec-compliant URL parser"
5
5
LANGUAGES C CXX
6
- VERSION 2.9.0
6
+ VERSION 2.9.1
7
7
)
8
8
set (CMAKE_CXX_STANDARD 17)
9
- set (ADA_LIB_VERSION "2.9.0 " CACHE STRING "ada library version" )
9
+ set (ADA_LIB_VERSION "2.9.1 " CACHE STRING "ada library version" )
10
10
set (ADA_LIB_SOVERSION "2" CACHE STRING "ada library soversion" )
11
11
12
12
include (GNUInstallDirs)
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ PROJECT_NAME = "Ada"
48
48
# could be handy for archiving the generated documentation or if some version
49
49
# control system is used.
50
50
51
- PROJECT_NUMBER = "2.9.0 "
51
+ PROJECT_NUMBER = "2.9.1 "
52
52
53
53
# Using the PROJECT_BRIEF tag one can provide an optional one line description
54
54
# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change 5
5
#ifndef ADA_ADA_VERSION_H
6
6
#define ADA_ADA_VERSION_H
7
7
8
- #define ADA_VERSION " 2.9.0 "
8
+ #define ADA_VERSION " 2.9.1 "
9
9
10
10
namespace ada {
11
11
12
12
enum {
13
13
ADA_VERSION_MAJOR = 2 ,
14
14
ADA_VERSION_MINOR = 9 ,
15
- ADA_VERSION_REVISION = 0 ,
15
+ ADA_VERSION_REVISION = 1 ,
16
16
};
17
17
18
18
} // namespace ada
You can’t perform that action at this time.
0 commit comments