Skip to content

chore: release v3.2.2 #928

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -3,9 +3,9 @@ cmake_minimum_required(VERSION 3.16)
project(ada
DESCRIPTION "Fast spec-compliant URL parser"
LANGUAGES C CXX
VERSION 3.2.1
VERSION 3.2.2
)
set(ADA_LIB_VERSION "3.2.1" CACHE STRING "ada library version")
set(ADA_LIB_VERSION "3.2.2" CACHE STRING "ada library version")
set(ADA_LIB_SOVERSION "3" CACHE STRING "ada library soversion")

include(GNUInstallDirs)
2 changes: 1 addition & 1 deletion doxygen
Original file line number Diff line number Diff line change
@@ -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 = "3.2.1"
PROJECT_NUMBER = "3.2.2"

# 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
4 changes: 2 additions & 2 deletions include/ada/ada_version.h
Original file line number Diff line number Diff line change
@@ -5,14 +5,14 @@
#ifndef ADA_ADA_VERSION_H
#define ADA_ADA_VERSION_H

#define ADA_VERSION "3.2.1"
#define ADA_VERSION "3.2.2"

namespace ada {

enum {
ADA_VERSION_MAJOR = 3,
ADA_VERSION_MINOR = 2,
ADA_VERSION_REVISION = 1,
ADA_VERSION_REVISION = 2,
};

} // namespace ada