Skip to content

Commit d820873

Browse files
committed
chore: release v1.0.0
1 parent f8ef3ad commit d820873

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ cmake_minimum_required(VERSION 3.16)
33
project(ada
44
DESCRIPTION "Fast spec-compliant URL parser"
55
LANGUAGES C CXX
6-
VERSION 0.1.0
6+
VERSION 1.0.0
77
)
88

9+
set(ADA_LIB_VERSION "1.0.0" CACHE STRING "ada library version")
10+
set(ADA_LIB_SOVERSION "1" CACHE STRING "ada library soversion")
11+
912
include(GNUInstallDirs)
1013

1114
include(CTest)
1215
include(cmake/ada-flags.cmake)
1316

14-
set(ADA_LIB_VERSION "0.1.0" CACHE STRING "ada library version")
15-
set(ADA_LIB_SOVERSION "1" CACHE STRING "ada library soversion")
16-
1717
set(ADA_SOURCE_DIR src)
1818

1919
add_subdirectory(src)

doxygen

Lines changed: 1 addition & 1 deletion
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 = "0.1.0"
51+
PROJECT_NUMBER = "1.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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
#ifndef ADA_ADA_VERSION_H
66
#define ADA_ADA_VERSION_H
77

8-
#define ADA_VERSION "0.1.0"
8+
#define ADA_VERSION "1.0.0"
99

1010
namespace ada {
1111

1212
enum {
13-
ADA_VERSION_MAJOR = 0,
14-
ADA_VERSION_MINOR = 1,
13+
ADA_VERSION_MAJOR = 1,
14+
ADA_VERSION_MINOR = 0,
1515
ADA_VERSION_REVISION = 0,
1616
};
1717

0 commit comments

Comments
 (0)