Skip to content

Commit d44402b

Browse files
chore: release v3.0.0 (#858)
Co-authored-by: anonrig <[email protected]>
1 parent 4ec60ff commit d44402b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
33
project(ada
44
DESCRIPTION "Fast spec-compliant URL parser"
55
LANGUAGES C CXX
6-
VERSION 2.9.2
6+
VERSION 3.0.0
77
)
8-
set(ADA_LIB_VERSION "2.9.2" CACHE STRING "ada library version")
9-
set(ADA_LIB_SOVERSION "2" CACHE STRING "ada library soversion")
8+
set(ADA_LIB_VERSION "3.0.0" CACHE STRING "ada library version")
9+
set(ADA_LIB_SOVERSION "3" CACHE STRING "ada library soversion")
1010

1111
include(GNUInstallDirs)
1212

doxygen

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "Ada"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = "2.9.2"
51+
PROJECT_NUMBER = "3.0.0"
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

include/ada/ada_version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
#ifndef ADA_ADA_VERSION_H
66
#define ADA_ADA_VERSION_H
77

8-
#define ADA_VERSION "2.9.2"
8+
#define ADA_VERSION "3.0.0"
99

1010
namespace ada {
1111

1212
enum {
13-
ADA_VERSION_MAJOR = 2,
14-
ADA_VERSION_MINOR = 9,
15-
ADA_VERSION_REVISION = 2,
13+
ADA_VERSION_MAJOR = 3,
14+
ADA_VERSION_MINOR = 0,
15+
ADA_VERSION_REVISION = 0,
1616
};
1717

1818
} // namespace ada

0 commit comments

Comments
 (0)