Skip to content
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

Bump version to 2.0.5 #210

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (KS_PLAT_WIN OR WITH_KS_TEST)
endif()

# Declare our project, libks2
project(LibKS2 VERSION 2.0.4 LANGUAGES C CXX)
project(LibKS2 VERSION 2.0.5 LANGUAGES C CXX)
message("LibKS2 Version ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}")

# Set package version
Expand Down
4 changes: 2 additions & 2 deletions src/include/libks/ks.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
#endif

/* libks version as a string */
#define KS_VERSION "2.0.4"
#define KS_VERSION "2.0.5"

/* libks version as a number */
#define KS_VERSION_NUM 20004
#define KS_VERSION_NUM 20005

/* Use this to allow enabling TCP_KEEPIDLE and TCP_KEEPINTVL socket options */
//#define KS_KEEP_IDLE_INTVL 1
Expand Down
2 changes: 1 addition & 1 deletion win/libks-version.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Import Project="basedir.props" Condition=" '$(BaseDirImported)' == ''"/>
</ImportGroup>
<PropertyGroup Label="UserMacros">
<libksVersion>2.0.4</libksVersion>
<libksVersion>2.0.5</libksVersion>
<libksBuildNumber>0</libksBuildNumber>
<libksLibDir>$(BaseDir)../</libksLibDir>
</PropertyGroup>
Expand Down
Loading