Skip to content

Commit a4e65c2

Browse files
committed
Preparing for release
1 parent 74fc04f commit a4e65c2

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*******************************************************************************
44

55
=== 0.5.5 ===
6-
- Updated build system.
6+
* Updated build system.
77

88
=== 0.5.4 ===
99
* Split all interface code into lsp-r3d-iface.

dependencies.mk

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

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.10
22+
LSP_COMMON_LIB_VERSION := 1.0.14
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := hdr
25-
LSP_COMMON_LIB_URL := git@github.com:sadko4u/$(LSP_COMMON_LIB_NAME).git
25+
LSP_COMMON_LIB_URL := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2626

27-
LSP_TEST_FW_VERSION := 1.0.6
27+
LSP_TEST_FW_VERSION := 1.0.8
2828
LSP_TEST_FW_NAME := lsp-test-fw
2929
LSP_TEST_FW_TYPE := src
30-
LSP_TEST_FW_URL := git@github.com:sadko4u/$(LSP_TEST_FW_NAME).git
30+
LSP_TEST_FW_URL := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git
3131

32-
LSP_R3D_IFACE_VERSION := 0.5.1
32+
LSP_R3D_IFACE_VERSION := 0.5.2
3333
LSP_R3D_IFACE_NAME := lsp-r3d-iface
3434
LSP_R3D_IFACE_TYPE := src
35-
LSP_R3D_IFACE_URL := git@github.com:sadko4u/$(LSP_R3D_IFACE_NAME).git
35+
LSP_R3D_IFACE_URL := git@github.com:lsp-plugins/$(LSP_R3D_IFACE_NAME).git
3636

3737
LIBPTHREAD_VERSION := system
3838
LIBPTHREAD_NAME := libpthread

make/configure.mk

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,8 @@ ifeq ($(findstring -devel,$(ARTIFACT_VERSION)),-devel)
5454
tmp_version :=$(shell echo "$(ARTIFACT_VERSION)" | sed s/-devel//g)
5555
ARTIFACT_VERSION=$(tmp_version)
5656
else
57-
$(foreach dep, $(DEPENDENCIES), \
58-
$(eval \
59-
$(dep)_BRANCH="$($(dep)_VERSION)" \
60-
) \
57+
$(foreach dep,$(DEPENDENCIES),\
58+
$(eval $(dep)_BRANCH="$($(dep)_VERSION)") \
6159
)
6260
endif
6361

project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARTIFACT_NAME = lsp-r3d-base-lib
2424
ARTIFACT_DESC = Base library for implementing and loading 3D rendering backend
2525
ARTIFACT_HEADERS = lsp-plug.in
2626
ARTIFACT_EXPORT_ALL = 0
27-
ARTIFACT_VERSION = 0.5.5-devel
27+
ARTIFACT_VERSION = 0.5.5
2828

2929
# List of dependencies
3030
DEPENDENCIES = \

src/Makefile.d

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ $(LSP_R3D_BASE_LIB_BIN)/main/base_backend.o: main/base_backend.cpp \
88
$(LSP_COMMON_LIB_INC)/lsp-plug.in/common/version.h \
99
$(LSP_COMMON_LIB_INC)/lsp-plug.in/common/status.h \
1010
$(LSP_COMMON_LIB_INC)/lsp-plug.in/stdlib/string.h
11-
$(LSP_R3D_BASE_LIB_BIN)/test/main.o: test/main.cpp
11+
$(LSP_R3D_BASE_LIB_BIN)/test/main.o: test/main.cpp \
12+
$(LSP_TEST_FW_INC)/lsp-plug.in/test-fw/main.h \
13+
$(LSP_TEST_FW_INC)/lsp-plug.in/test-fw/version.h \
14+
$(LSP_COMMON_LIB_INC)/lsp-plug.in/common/types.h \
15+
$(LSP_COMMON_LIB_INC)/lsp-plug.in/common/version.h

0 commit comments

Comments
 (0)