diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..2ec924ada --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Makefile for creating the source tarball +# The parent directory must be called dynare-4.x.y +# WARNING: this makefile will destroy all your .svn subdirectories! + +DYNAREBASE=$(shell basename $(shell pwd)) + +srctarball: + make -C preprocessor clean + make -C doc clean + rm -f matlab/dynare_m matlab/dynare_m.exe + rm -f mex/2007a/* mex/2007b/* mex/octave/*.mex + rm -f windows/*.exe + find -name .svn | xargs rm -rf + find -type f -name '*~' | xargs rm -f + cd ..; tar cvzf $(DYNAREBASE).tgz \ + $(DYNAREBASE)/preprocessor \ + $(DYNAREBASE)/matlab \ + $(DYNAREBASE)/doc \ + $(DYNAREBASE)/mex diff --git a/debian/changelog b/debian/changelog index b6e77aef9..bf59a7290 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +dynare (4.0.1) UNRELEASED; urgency=low + + * Include matlab/distributions/ directory in packaging + * BVAR à la Sims: the preprocessor now accepts integers for tau and + lambda parameters (thanks to Aqua for reporting) + * More information messages displayed during homotopy (modes 1,2,3) + * Fixed bugs in homotopy mode 3 + * Fixed typo in DiffuseKalmanSmootherH1.m (thanks to Tsu-ting Tim Lin + for reporting) + * Fixed bug with cumulative normal distribution in model block (thanks + to Karl Walentin for reporting) + * Changes to Dynare solver: + - more debugging messages with solve_algo=2 + - solve_algo=2 now exits immediately after failure to solve one block + - new solve_algo=4, similar to solve_algo=2 but with a different way + of dealing with badly scaled or nearly singular Jacobian + - solve_algo=0 fails if Matlab's Optimization Toolbox not present + - solver fails if solve_algo not in [0,1,2,3,4] + + -- Sébastien Villemot Tue, 23 Sep 2008 11:41:41 +0200 + dynare (4.0.0) UNRELEASED; urgency=low * First official release in the 4.0 series