|
| 1 | +.. -*- restructuredtext -*- |
| 2 | +
|
| 3 | +=============== |
| 4 | +Release History |
| 5 | +=============== |
| 6 | + |
| 7 | +**0.95.1** (2012-10-8) |
| 8 | +========================== |
| 9 | + |
| 10 | + * Eliminated some small bugs in parser module as well as in other sections of code. This version is a significant step up from 0.90.1 ! |
| 11 | + |
| 12 | + * Implemented some work-around for PyMacLab to install/compile correctly under Enthought EPD on Macintosh. |
| 13 | + |
| 14 | + * Eliminated some bug in model.updaters methods which did not update model.vardic at all when new item was assigned. |
| 15 | + |
| 16 | + * When the PyMacLab library gets loaded, the correct number of CPU cores is now auto-detected and used automatically throughout. |
| 17 | + |
| 18 | + * DSGE models can now be instantiated by passing an entire triple-quoted model file string to the model class, instead of using filepath. |
| 19 | + |
| 20 | + * The DSGE model instance now has object model.template_paramdic which can be passed to pymaclab.modfiles.templates.wheezy_template to generate modfile. |
| 21 | + |
| 22 | + * New steady state solution method introduced. Simply pass sstate="some Python dictionary" to pass values from outside model. |
| 23 | + |
| 24 | + * New steady state solution method introduced. The USE_FOCS option can now also be declared from inside the model file. |
| 25 | + |
| 26 | + * For SS calculations inside the numerical SS section it is now possible to compute smart starting values using symbolic maths, instead of just numbers. |
| 27 | + |
| 28 | + * Inside variable substition section users can now employ new reserved command @ALL{} to auto-generate large number of derivative declarations. See docs. |
| 29 | + |
| 30 | + * The library now contains an extensive test suite using nose, just call pymaclab.test() to run it. Makes the library robust. |
| 31 | + |
| 32 | + * Added a couple of experimental models in pymaclab.modfiles.models (Experimental RBC_Romer contributed by David Pugh at Edinburgh University. Thanks!) |
| 33 | + |
| 34 | + * Updated documentation to describe new functionality/features. |
| 35 | + |
| 36 | + * TODO: More DSGE models have to be added and existing ones modified. |
| 37 | + |
| 38 | + * TODO: The documentation is still not complete. Especially the stats module is not explained. |
| 39 | + |
| 40 | + * TODO: May write additional model templates using Jinja2 and Cheetah, instead of using only Wheezy. |
| 41 | + |
| 42 | + * TODO: Use new templating funcionality to implement method which produces Dynare-compatible model files. |
| 43 | + |
| 44 | + |
| 45 | +**0.90.1** (2012-9-27) |
| 46 | +========================== |
| 47 | + |
| 48 | + * Differentiation in the variable substitution section is now "smarter" and understands inter-temporal differentiation with special @DISCOUNT variable |
| 49 | + |
| 50 | + * Implemented the Christiano-Fitzgerald asymmetric band-pass filter to extract stationary cycle from simulated data. |
| 51 | + |
| 52 | + * Eliminated some small bugs in parser module. |
| 53 | + |
| 54 | + * Made new stats.VAR and stats.FAVAR experimentally available, but this is not documented yet ! |
| 55 | + |
| 56 | + * Also included the Fred API with the PyMacLab package to download data from the St. Louis Fed. |
| 57 | + |
| 58 | + * The DSGE model filepath handles have been split into "models.stable.xmodel", "models.development.xmodel" and "models.testing.xmodel" |
| 59 | + |
| 60 | + * The updater methods for dynamic runtime changes to DSGE models to are pretty much complete now. |
| 61 | + |
| 62 | + * Have started adding more API documentation to PyMacLab Sphinx docs. |
| 63 | + |
| 64 | + * The example/test files have been considerably updated. But need to implement Python nose cases next. |
| 65 | + |
| 66 | + * Updated documentation substantially. |
| 67 | + |
| 68 | + * TODO: More DSGE models have to be added and existing ones modified. |
| 69 | + |
| 70 | + * TODO: The documentation is still not complete. Especially the stats module is not explained. |
| 71 | + |
| 72 | + |
| 73 | +**0.89.1** (2012-9-11) |
| 74 | +====================== |
| 75 | + |
| 76 | + * Re-introduced sympycore as default CAS. It is MUCH faster than sympy. Now comes packaged with PyMacLab. |
| 77 | + |
| 78 | + * Also decided to always package the latest (working and tested) parallel python(pp) library with PyMacLab. |
| 79 | + |
| 80 | + * PyMacLab's parser now also replaces substituted items in the closed form steady state section. |
| 81 | + |
| 82 | + * A new parameter can be passed to pymaclab.newMOD(mesg=True|False) to generate diagnosis print-outs during instantiation. |
| 83 | + |
| 84 | + * Another new parameter is pymaclab.newMOD(ncpus='auto'|INT) where INT is some integer. Number of CPU cores to be used. Default=1. |
| 85 | +
|
| 86 | + * Another new parameter is pymaclab.newMOD(mk_hessian=True|False). Should expensive Hessian be computed? Default=True. |
| 87 | + |
| 88 | + * PyMacLab now supports 5 different ways of finding a DSGE model's steady state. |
| 89 | + |
| 90 | + * One of the 5 SS methods uses externally passed arguments pymaclab.newMOD(use_focs=[],ssidic={}) to use FOCS to solve for SS. |
| 91 | + |
| 92 | + * One-off and queued dynamic run-time DSGE model updaters objects have been added |
| 93 | + |
| 94 | + * Improved various DSGE model templates. Monika Merz's unemployment RBC DSGE model is now working. |
| 95 | + |
| 96 | + * Further improvements and additions to the online documentation |
| 97 | + |
| 98 | + |
| 99 | +**0.88.1** (2012-9-3) |
| 100 | +===================== |
| 101 | + |
| 102 | + * PyMacLab now only depends on Sympy and no longer the outdated Sympycore. |
| 103 | + |
| 104 | + * Significantly improved documentation, now on its way of being first draft. |
| 105 | + |
| 106 | + * Translated some model files to make use of new functions. |
| 107 | + |
| 108 | + * Deprecated alternative ways of specifying law of motion of exogenous states. |
| 109 | + |
| 110 | + * Added new SS{EXPRESSION} steady-state conversion feature to Variable Substitution section. |
| 111 | + |
| 112 | + * DIFF{EXPRESSION} now also works for steady state expressions w.r.t. steady state variables. |
| 113 | + |
| 114 | + |
| 115 | +**0.85** (2012-08-30) |
| 116 | +===================== |
| 117 | + |
| 118 | + * Added Sphinx Documentation with API Section. |
| 119 | + |
| 120 | + * Analytical differentiation using DIFF{EXPRESSION,x(t)} now possible in Substitution Section of modfiles. |
| 121 | + |
| 122 | + * Forward and Backward operators FF_X{EXPRESSION} and BB_X{EXPRESSION} for X=1...N now possible in Substitution section of modfiles. |
| 123 | + |
| 124 | +**0.8** (2012-08-21) |
| 125 | +==================== |
| 126 | + |
| 127 | + First public release. |
0 commit comments