This commit is contained in:
Massimo
2013-06-06 10:24:14 -05:00
parent ea3aa62476
commit 00087198e0
3 changed files with 10 additions and 2 deletions
+8
View File
@@ -1,3 +1,11 @@
## 2.5.1
- New style virtual fields in grid
- Conditional fields (experimental) ``db.table.field.show_id = db.table.otherfield==True`` or ``db.table.field.show_id = db.table.otherfiel.contains(values)``
- auth.settings.manager_group_role="manager" enables http://.../app/appadmin/auth_manage and http://.../app/appadmin/manage for members of the "manager" group. (also experimental)
- Fixed memory leak when using the TAG helper
## 2.4.7
- pypy support, thanks Niphlod
+1 -1
View File
@@ -30,7 +30,7 @@ update:
echo "remember that pymysql was tweaked"
src:
### Use semantic versioning
echo 'Version 2.4.7-stable+timestamp.'`date +%Y.%m.%d.%H.%M.%S` > VERSION
echo 'Version 2.5.1-stable+timestamp.'`date +%Y.%m.%d.%H.%M.%S` > VERSION
### rm -f all junk files
make clean
### clean up baisc apps
+1 -1
View File
@@ -1 +1 @@
Version 2.4.7-stable+timestamp.2013.06.04.16.40.00
Version 2.5.1-stable+timestamp.2013.06.06.10.23.23