Skip to content

Commit ad08df7

Browse files
author
Tony Kirke
committed
Bump version number, packaging changes, no source changes
1 parent a217fed commit ad08df7

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ endif()
1919

2020
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
2121

22-
SET(SPUCE_LIBVER "0.4.2")
22+
set(SPUCE_MAJOR_VERSION 0)
23+
set(SPUCE_MINOR_VERSION 4)
24+
set(SPUCE_PATCH_VERSION 3)
25+
26+
SET(SPUCE_LIBVER ${SPUCE_MAJOR_VERSION}.${SPUCE_MINOR_VERSION}.${SPUCE_PATCH_VERSION})
2327
SET(SPUCE_SOVER "${SPUCE_LIBVER}")
2428
set(SPUCE_VERSION "${SPUCE_LIBVER}")
2529

Changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Release 0.4.3 (2015-12-19)
2+
==========================
3+
- Fix library/version numbering in packaging
4+
- Change CMake option ENABLE_PYTHON to BUILD_TESTING
5+
16
Release 0.4.2 (2015-12-11)
27
==========================
38

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
spuce (0.4.3-myriadrf1~wily) wily; urgency=low
2+
3+
* Release 0.4.3 (2015-12-19)
4+
5+
-- Tony Kirke <tony@pyspuc.com> Sat, 19 Dec 2015 12:22:00 -0700
6+
17
spuce (0.4.2-myriadrf1~wily) wily; urgency=low
28

39
* Release 0.4.2 (2015-12-11)

debian/control

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Homepage: https://github.com/audiofilter/spuce/wiki
1111
Vcs-Git: https://github.com/audiofilter/spuce.git
1212
Vcs-Browser: https://github.com/audiofilter/spuce
1313

14-
Package: libspuce0
14+
Package: libspuce0.4-3
1515
Section: libs
1616
Architecture: any
1717
Multi-Arch: same
@@ -26,7 +26,7 @@ Package: libspuce-dev
2626
Section: libdevel
2727
Architecture: any
2828
Depends:
29-
libspuce0 (= ${binary:Version}),
29+
libspuce0.4-3 (= ${binary:Version}),
3030
${shlibs:Depends},
3131
${misc:Depends}
3232
Description: Spuce - development files
@@ -36,7 +36,7 @@ Package: spuce
3636
Section: science
3737
Architecture: any
3838
Depends:
39-
libspuce0 (= ${binary:Version}),
39+
libspuce0.4-3 (= ${binary:Version}),
4040
${shlibs:Depends},
4141
${misc:Depends}
4242
Description: Example applications for libspuce

0 commit comments

Comments
 (0)