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

cmake,make: bump version and set dev identifier #553

Merged
merged 1 commit into from
Oct 1, 2022
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
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@
cmake_minimum_required(VERSION 3.10)

project(re
VERSION 2.8.0
VERSION 2.9.0
sreimers marked this conversation as resolved.
Show resolved Hide resolved
LANGUAGES C
HOMEPAGE_URL https://github.com/baresip/re
DESCRIPTION "Generic library for real-time communications"
)

# Pre-release identifier, comment out on a release
# Increment for breaking changes (dev2, dev3...)
#set(PROJECT_VERSION_FULL ${PROJECT_VERSION}-dev)
set(PROJECT_VERSION_FULL ${PROJECT_VERSION}-dev)

# comment in on a release
set(PROJECT_VERSION_FULL ${PROJECT_VERSION})
#set(PROJECT_VERSION_FULL ${PROJECT_VERSION})

set(PROJECT_SOVERSION 10) # bump if ABI breaks

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

# Main version number
VER_MAJOR := 2
VER_MINOR := 8
VER_MINOR := 9
VER_PATCH := 0

# Development version, comment out on a release
# Increment for breaking changes (dev2, dev3...)
# VER_PRE := dev
VER_PRE := dev

# bump Major if ABI breaks
ABI_MAJOR := 10
Expand Down