trunk: merged 2097 and 2099 changesets from 4.0 branch (debian changelog entry for 4.0.1, new Makefile for creating source tarball)

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@2100 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2008-09-23 10:27:46 +00:00
parent dc5904dc1e
commit 19321f7d79
2 changed files with 40 additions and 0 deletions

19
Makefile Normal file
View File

@ -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

21
debian/changelog vendored
View File

@ -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 <sebastien.villemot@ens.fr> Tue, 23 Sep 2008 11:41:41 +0200
dynare (4.0.0) UNRELEASED; urgency=low
* First official release in the 4.0 series