Re: DUB 0.9.21 beta 1

2013-12-02 Thread Sönke Ludwig
Am 02.12.2013 08:32, schrieb Jacob Carlborg: On 2013-11-30 21:48, Sönke Ludwig wrote: Based on the bug reports so far, I've prepared a new beta release of 0.9.21 for testing. Apart from fixes for the reported issues, it contains a revamped command line interface with detailed help for each

Re: DUB 0.9.21 beta 1

2013-12-02 Thread Jacob Carlborg
On 2013-12-02 09:10, Sönke Ludwig wrote: It's similar. By default, for library projects, it generates a maim module of the form --- module test_main; import library_name.main_module; import std.stdio; import core.runtime; void main() { writeln(All unit tests were successful.); } --- and runs

Re: DUB 0.9.21 beta 1

2013-12-02 Thread Sönke Ludwig
Am 02.12.2013 09:19, schrieb Jacob Carlborg: On 2013-12-02 09:10, Sönke Ludwig wrote: It's similar. By default, for library projects, it generates a maim module of the form --- module test_main; import library_name.main_module; import std.stdio; import core.runtime; void main() {

Re: DDT 0.9.0 released - GDB debugging integration

2013-12-02 Thread eles
On Tuesday, 19 November 2013 at 13:15:43 UTC, Bruno Medeiros wrote: On 18/11/2013 15:32, ilya-stromberg wrote: On Monday, 18 November 2013 at 15:28:36 UTC, Jacek Furmankiewicz wrote: Quick question: with the current version is it possible to use it with a dub project at all (maybe via a

Re: DUB 0.9.20

2013-12-02 Thread Piotr Szturmaj
Jordi Sayol wrote: El 30/11/13 02:08, Piotr Szturmaj ha escrit: Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Thanks! Have you considered adding a version number to dub help and/or a --version option? $ dub help

Re: DUB 0.9.20

2013-12-02 Thread Sönke Ludwig
Am 02.12.2013 12:25, schrieb Piotr Szturmaj: Jordi Sayol wrote: El 30/11/13 02:08, Piotr Szturmaj ha escrit: Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Thanks! Have you considered adding a version number to dub help

D programming workshop on Dec 15th, Shanghai

2013-12-02 Thread Lionello Lunesu
Hi, I'll be hosting a D workshop on the 15th in the XinCheJian hacker space, in Shanghai, China. ChangLe Rd 1035 2F, 长乐路1035号2楼 It'll take place from 1pm to 5pm and is meant for beginners. There will likely be a longer/advanced workshop the week after, depending on demand. The workshop is

Re: D programming workshop on Dec 15th, Shanghai

2013-12-02 Thread Craig Dillabaugh
On Monday, 2 December 2013 at 12:07:59 UTC, Lionello Lunesu wrote: Hi, I'll be hosting a D workshop on the 15th in the XinCheJian hacker space, in Shanghai, China. ChangLe Rd 1035 2F, 长乐路1035号2楼 It'll take place from 1pm to 5pm and is meant for beginners. There will likely be a

Re: DDT 0.9.0 released - GDB debugging integration

2013-12-02 Thread Bruno Medeiros
On 02/12/2013 10:35, eles wrote: On Tuesday, 19 November 2013 at 13:15:43 UTC, Bruno Medeiros wrote: On 18/11/2013 15:32, ilya-stromberg wrote: On Monday, 18 November 2013 at 15:28:36 UTC, Jacek Furmankiewicz wrote: Quick question: with the current version is it possible to use it with a dub

Re: LLDB support - Re: DDT 0.9.0 released - GDB debugging integration

2013-12-02 Thread David Nadlinger
On Thursday, 21 November 2013 at 13:56:38 UTC, Bruno Medeiros wrote: That claim is based on the observation that the latest GDC binary distributable for Windows (which even so is not quite official and of unknown stability) is based on DMD 2.060 whereas LDC has binary releases based on 2.063.2

Re: DUB 0.9.21 beta 1

2013-12-02 Thread Jacob Carlborg
On 2013-12-02 10:10, Sönke Ludwig wrote: It errors out. An alternative would be to put _all_ source files as static imports into the generated module, but the main file will also be required for dependency based builds (--rdmd and possibly for DUB's own build system, once partial rebuilds

Re: DDT 0.9.0 released - GDB debugging integration

2013-12-02 Thread eles
On Monday, 2 December 2013 at 15:55:22 UTC, Bruno Medeiros wrote: On 02/12/2013 10:35, eles wrote: On Tuesday, 19 November 2013 at 13:15:43 UTC, Bruno Medeiros wrote: On 18/11/2013 15:32, ilya-stromberg wrote: On Monday, 18 November 2013 at 15:28:36 UTC, Jacek Furmankiewicz wrote: The

Re: DUB 0.9.21 beta 1

2013-12-02 Thread Sönke Ludwig
Am 02.12.2013 17:01, schrieb Jacob Carlborg: On 2013-12-02 10:10, Sönke Ludwig wrote: It errors out. An alternative would be to put _all_ source files as static imports into the generated module, but the main file will also be required for dependency based builds (--rdmd and possibly for

Re: DUB 0.9.21 beta 1

2013-12-02 Thread Jacob Carlborg
On 2013-12-02 21:51, Sönke Ludwig wrote: I need to dig up the old discussions about this topic, I just seemed to remember that we reached a conclusion to require a root file also for libraries, but you are right that technically it's not required in this case (as in the the suggested

Re: DDT 0.9.0 released - GDB debugging integration

2013-12-02 Thread Rory McGuire
Nice. Always keeping master bug fix complete with all completed features make people more likely to use tip. Another related method of managing versions that I've seen is to create forks when you want to do a release. On 2 Dec 2013 18:00, Bruno Medeiros brunodomedeiros+...@gmail.com wrote: On