From 7cae6694849769728a763e19b6c049c0b820f82a Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Thu, 30 Mar 2023 13:51:57 -0400 Subject: [PATCH] chore: release v2.0 --- CMakeLists.txt | 2 +- docs/RELEASE.md | 2 +- doxygen | 4 ++-- include/ada/ada_version.h | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 96570fca8..ed0ce54df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project(ada VERSION 1.0.4 ) -set(ADA_LIB_VERSION "1.0.4" CACHE STRING "ada library version") +set(ADA_LIB_VERSION "2.0.0" CACHE STRING "ada library version") set(ADA_LIB_SOVERSION "1" CACHE STRING "ada library soversion") include(GNUInstallDirs) diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 7924b6e88..cbf918deb 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -7,7 +7,7 @@ following documents: - [CmakeLists.txt](../CmakeLists.txt) - [Doxygen](../doxygen) -- [ada-version.h](../include/ada/ada_version.h) +- [ada_version.h](../include/ada/ada_version.h) ## Release diff --git a/doxygen b/doxygen index 0caec2b78..dddc69f45 100644 --- a/doxygen +++ b/doxygen @@ -48,13 +48,13 @@ PROJECT_NAME = "Ada" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.0.4" +PROJECT_NUMBER = "2.0.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = "Spec-compliant URL parser" +PROJECT_BRIEF = "Fast spec-compliant URL parser" # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 diff --git a/include/ada/ada_version.h b/include/ada/ada_version.h index 45519fdc2..96e2f8697 100644 --- a/include/ada/ada_version.h +++ b/include/ada/ada_version.h @@ -5,14 +5,14 @@ #ifndef ADA_ADA_VERSION_H #define ADA_ADA_VERSION_H -#define ADA_VERSION "1.0.4" +#define ADA_VERSION "2.0.0" namespace ada { enum { - ADA_VERSION_MAJOR = 1, + ADA_VERSION_MAJOR = 2, ADA_VERSION_MINOR = 0, - ADA_VERSION_REVISION = 4, + ADA_VERSION_REVISION = 0, }; } // namespace ada