Skip to content

Commit 592c74b

Browse files
committed
Release 0.5.9
* Updated build scripts that now use tags without prefixes first.
2 parents 54d1184 + 537a6ef commit 592c74b

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* RECENT CHANGES
33
*******************************************************************************
44

5+
=== 0.5.9 ===
6+
* Updated build scripts that now use tags without prefixes first.
7+
58
=== 0.5.8 ===
69
* Fixed excessive header installation with proper one.
710
* Fixed installation and deinstallation of shared object and library files.

dependencies.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
#
2020

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.7
22+
LSP_COMMON_LIB_VERSION := 1.0.8
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := src
2525
LSP_COMMON_LIB_URL := https://github.com/sadko4u/$(LSP_COMMON_LIB_NAME).git
2626

27-
LSP_TEST_FW_VERSION := 1.0.5
27+
LSP_TEST_FW_VERSION := 1.0.6
2828
LSP_TEST_FW_NAME := lsp-test-fw
2929
LSP_TEST_FW_TYPE := src
3030
LSP_TEST_FW_URL := https://github.com/sadko4u/$(LSP_TEST_FW_NAME).git

include/lsp-plug.in/dsp/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// Define version of headers
2626
#define LSP_DSP_LIB_MAJOR 0
2727
#define LSP_DSP_LIB_MINOR 5
28-
#define LSP_DSP_LIB_MICRO 8
28+
#define LSP_DSP_LIB_MICRO 9
2929

3030
#ifdef LSP_DSP_LIB_BUILTIN
3131
#define LSP_DSP_LIB_CPPEXPORT

make/configure.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ifeq ($(findstring -devel,$(ARTIFACT_VERSION)),-devel)
4949
else
5050
$(foreach dep, $(DEPENDENCIES), \
5151
$(eval \
52-
$(dep)_BRANCH="$($(dep)_NAME)-$($(dep)_VERSION)" \
52+
$(dep)_BRANCH="$($(dep)_VERSION)" \
5353
) \
5454
)
5555
endif

make/modules.mk

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ CONFIG := $(CURDIR)/.config.mk
2323

2424
include $(BASEDIR)/dependencies.mk
2525
ifneq ($(TREE),1)
26-
include $(CONFIG)
26+
-include $(CONFIG)
2727
endif
2828
include $(BASEDIR)/project.mk
2929

@@ -41,7 +41,7 @@ ifeq ($(TREE),1)
4141
)
4242
else
4343
$(foreach dep, $(ALL_DEPENDENCIES), \
44-
$(eval $(dep)_BRANCH="$($(dep)_NAME)-$($(dep)_VERSION)") \
44+
$(eval $(dep)_BRANCH="$($(dep)_VERSION)") \
4545
$(eval $(dep)_PATH=$(MODULES)/$($(dep)_NAME)) \
4646
)
4747
endif
@@ -65,7 +65,9 @@ $(ALL_SRC_MODULES) $(ALL_HDR_MODULES):
6565
@$(GIT) -C "$($(@)_PATH)" fetch origin --force
6666
@$(GIT) -C "$($(@)_PATH)" fetch origin '+refs/heads/*:refs/tags/*' --force
6767
@$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_BRANCH) || \
68-
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_BRANCH)
68+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_BRANCH) || \
69+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_NAME)-$($(@)_BRANCH) || \
70+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_NAME)-$($(@)_BRANCH)
6971

7072
$(ALL_PATHS):
7173
@echo "Removing $(notdir $(@))"

project.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#
2020

2121
# Package version
22-
ARTIFACT_DESC = DSP library for digital signal processing
2322
ARTIFACT_NAME = lsp-dsp-lib
23+
ARTIFACT_DESC = DSP library for digital signal processing
2424
ARTIFACT_VARS = LSP_DSP_LIB
2525
ARTIFACT_HEADERS = lsp-plug.in
26-
ARTIFACT_VERSION = 0.5.8
26+
ARTIFACT_VERSION = 0.5.9
2727

2828
# List of dependencies
2929
DEPENDENCIES = \

0 commit comments

Comments
 (0)