File: 0012-cmake-increment-version-and-ABI-version.patch

package info (click to toggle)
siconos 4.4.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,332 kB
  • sloc: cpp: 160,975; ansic: 129,999; fortran: 33,051; python: 21,001; xml: 1,244; sh: 385; makefile: 318
file content (31 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From: Stephen Sinclair <radarsat1@gmail.com>
Date: Mon, 25 Oct 2021 09:41:12 +0000
Subject: [cmake] increment version and ABI version

From commit fe92922a0b3166988727c3e6d9a7bc6b9bd393e7 of upstream
repository after release.
---
 cmake/SiconosVersion.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmake/SiconosVersion.cmake b/cmake/SiconosVersion.cmake
index bdf8085..dfadb11 100644
--- a/cmake/SiconosVersion.cmake
+++ b/cmake/SiconosVersion.cmake
@@ -1,6 +1,6 @@
 # --- set siconos current version ---
 set(MAJOR_VERSION 4)
-set(MINOR_VERSION 4)
+set(MINOR_VERSION 5)
 set(PATCH_VERSION 0)
 set(SICONOS_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
 
@@ -32,7 +32,7 @@ set(SICONOS_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
 # If any interfaces have been removed since the last public release, then set
 # age to 0.
 
-set(SO_current 6)
+set(SO_current 7)
 set(SO_revision 0)
 set(SO_age 0)