Skip to content

Commit

Permalink
chore: release v2.0 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig authored Mar 30, 2023
1 parent 66edc66 commit 302b7f3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions doxygen
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions include/ada/ada_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 302b7f3

Please sign in to comment.