Skip to content

Commit 302b7f3

Browse files
authored
chore: release v2.0 (#314)
1 parent 66edc66 commit 302b7f3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ project(ada
66
VERSION 1.0.4
77
)
88

9-
set(ADA_LIB_VERSION "1.0.4" CACHE STRING "ada library version")
9+
set(ADA_LIB_VERSION "2.0.0" CACHE STRING "ada library version")
1010
set(ADA_LIB_SOVERSION "1" CACHE STRING "ada library soversion")
1111

1212
include(GNUInstallDirs)

docs/RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ following documents:
77

88
- [CmakeLists.txt](../CmakeLists.txt)
99
- [Doxygen](../doxygen)
10-
- [ada-version.h](../include/ada/ada_version.h)
10+
- [ada_version.h](../include/ada/ada_version.h)
1111

1212
## Release
1313

doxygen

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ 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 = "1.0.4"
51+
PROJECT_NUMBER = "2.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
5555
# quick idea about the purpose of the project. Keep the description short.
5656

57-
PROJECT_BRIEF = "Spec-compliant URL parser"
57+
PROJECT_BRIEF = "Fast spec-compliant URL parser"
5858

5959
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
6060
# in the documentation. The maximum height of the logo should not exceed 55

include/ada/ada_version.h

Lines changed: 3 additions & 3 deletions
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 "1.0.4"
8+
#define ADA_VERSION "2.0.0"
99

1010
namespace ada {
1111

1212
enum {
13-
ADA_VERSION_MAJOR = 1,
13+
ADA_VERSION_MAJOR = 2,
1414
ADA_VERSION_MINOR = 0,
15-
ADA_VERSION_REVISION = 4,
15+
ADA_VERSION_REVISION = 0,
1616
};
1717

1818
} // namespace ada

0 commit comments

Comments
 (0)