Skip to content

Commit

Permalink
cmake,make: bump version and set dev identifier (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 authored Oct 1, 2022
1 parent 84895ab commit 7e6df18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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
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

0 comments on commit 7e6df18

Please sign in to comment.