Skip to content

Commit

Permalink
chore: release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Feb 7, 2023
1 parent 40719fc commit 9b3001a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
project(ada
DESCRIPTION "Fast spec-compliant URL parser"
LANGUAGES C CXX
VERSION 1.0.0
VERSION 1.0.1
)

set(ADA_LIB_VERSION "1.0.0" CACHE STRING "ada library version")
set(ADA_LIB_VERSION "1.0.1" 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
2 changes: 1 addition & 1 deletion doxygen
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "Ada"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "1.0.0"
PROJECT_NUMBER = "1.0.1"

# 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
Expand Down
4 changes: 2 additions & 2 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.0"
#define ADA_VERSION "1.0.1"

namespace ada {

enum {
ADA_VERSION_MAJOR = 1,
ADA_VERSION_MINOR = 0,
ADA_VERSION_REVISION = 0,
ADA_VERSION_REVISION = 1,
};

} // namespace ada
Expand Down

0 comments on commit 9b3001a

Please sign in to comment.