From 7a8d19cafef38b922c90d67c03e914fadbb53ca3 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 20 Jan 2015 09:35:42 +0300 Subject: [PATCH] fix project dependencies --- dub.json | 16 ++++++++-------- examples/example1/dub.json | 6 +----- examples/helloworld/dub.json | 2 +- examples/tetris/dub.json | 2 +- 4 files changed, 11 insertions(+), 15 deletions(-) diff --git a/dub.json b/dub.json index 29ca505d..637b83a1 100644 --- a/dub.json +++ b/dub.json @@ -92,10 +92,10 @@ "3rdparty/win32/wtypes.d", ], "dependencies": { - "derelict-sdl2": "~master", - "derelict-gl3": "~master", - "derelict-ft": "~master", - "dlib": "~master" + "derelict-sdl2": ">=1.9.1", + "derelict-gl3": ">=1.0.12", + "derelict-ft": ">=1.0.0", + "dlib": ">=0.4.1" }, "-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "win32.", "--ex", "src.dlangui"] }, @@ -105,9 +105,9 @@ ], "dependencies": { - "dlangui:dlanguilib": "~master", - "dlangui:example1": "~master", - "dlangui:helloworld": "~master", - "dlangui:tetris": "~master", + "dlangui:dlanguilib": "*", + "dlangui:example1": "*", + "dlangui:helloworld": "*", + "dlangui:tetris": "*", } } diff --git a/examples/example1/dub.json b/examples/example1/dub.json index 138bfc2f..7eddcd9b 100644 --- a/examples/example1/dub.json +++ b/examples/example1/dub.json @@ -77,10 +77,6 @@ "../../3rdparty/win32/wtypes.d", ], "dependencies": { - "dlangui:dlanguilib": "~master", - "derelict-sdl2": "~master", - "derelict-gl3": "~master", - "derelict-fi": "~master", - "derelict-ft": "~master" + "dlangui:dlanguilib": "*", } } diff --git a/examples/helloworld/dub.json b/examples/helloworld/dub.json index 6fcd6659..71cee0d5 100644 --- a/examples/helloworld/dub.json +++ b/examples/helloworld/dub.json @@ -23,6 +23,6 @@ "mainSourceFile": "src/app.d", "dependencies": { - "dlangui:dlanguilib": "~master", + "dlangui:dlanguilib": "*", } } diff --git a/examples/tetris/dub.json b/examples/tetris/dub.json index 766631e0..4b125991 100644 --- a/examples/tetris/dub.json +++ b/examples/tetris/dub.json @@ -78,6 +78,6 @@ ], "dependencies": { - "dlangui:dlanguilib": "~master" + "dlangui:dlanguilib": "*" } }