diff --git a/docs/releases/0.13.rst b/docs/releases/0.13.rst new file mode 100644 index 0000000000..c75631bc02 --- /dev/null +++ b/docs/releases/0.13.rst @@ -0,0 +1,94 @@ +============================== +Mayan EDMS v0.13 release notes +============================== + +*2012* + +Welcome to Mayan EDMS v0.13! + +Overview +======== + +* POP3 email document source + + +What's new in Mayan EDMS v0.13 +============================== + +E-mail document source +~~~~~~~~~~~~~~~~~~~~~~ + + +Upgrading from a previous version +================================= + +Start off by adding the new requirements:: + + $ pip install -r requirements/production.txt + +Then create the new database structures with:: + + $ ./manage.py syncdb + +Afterwards migrate existing database schema with:: + + $ ./manage.py migrate permissions 0001 --fake + $ ./manage.py migrate permissions + + +When the following message appears + +:: + + The following content types are stale and need to be deleted: + + permissions | permission + + Any objects related to these content types by a foreign key will also + be deleted. Are you sure you want to delete these content types? + If you're unsure, answer 'no'. + + Type 'yes' to continue, or 'no' to cancel: + +Type ``yes`` and press **Enter** + +And continue migrating database schema with:: + + $ ./manage.py migrate documents + $ ./manage.py migrate document_signatures + $ ./manage.py migrate folders 0001 --fake + $ ./manage.py migrate folders + $ ./manage.py migrate document_indexing 0001 --fake + $ ./manage.py migrate document_indexing + $ ./manage.py migrate sources 0001 --fake + $ ./manage.py migrate sources + +Again when a similar messages appears +:: + + The following content types are stale and need to be deleted: + + document_indexing | indexinstance + + Any objects related to these content types by a foreign key will also + be deleted. Are you sure you want to delete these content types? + If you're unsure, answer 'no'. + + Type 'yes' to continue, or 'no' to cancel: + +Type ``yes`` and press **Enter** + +The upgrade procedure is now complete. + + +Backward incompatible changes +============================= +None so far + +Bugs fixed +========== +* Metadata unicode fixes, while creating new documents. + +Stuff removed +============= +None so far diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 3bbee2aa57..a51dcf09ac 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -11,11 +11,12 @@ all the backwards-incompatible changes and deprecated features for each 'final' release from the one after your current **Mayan EDMS** version, up to and including the new version. -Latest version (0.12) +Latest version (0.13) --------------------- .. toctree:: :maxdepth: 1 + 0.13 0.12 Historic changelogs