Skip to content

Commit

Permalink
mnesia: prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
dgud authored and Erlang/OTP committed Feb 17, 2010
1 parent 91de9d0 commit 55d3477
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 5 deletions.
35 changes: 32 additions & 3 deletions lib/mnesia/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<chapter>
<header>
<copyright>
<year>1996</year><year>2009</year>
<year>1996</year><year>2010</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Expand All @@ -13,12 +13,12 @@
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.

Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.

</legalnotice>

<title>Mnesia Release Notes</title>
Expand All @@ -38,6 +38,35 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.</p>

<section><title>Mnesia 4.4.13</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Transactions could be left hanging if a node went down
when invoking mnesia:sync_transaction/[1,2]. Thanks Igor
Ribeiro Sucupira.</p>
<p>
Own Id: OTP-8402</p>
</item>
</list>
</section>


<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Igor Ribeiro Sucupira added the option to compress data
when copying tables between Mnesia nodes.</p>
<p>
Own Id: OTP-8406</p>
</item>
</list>
</section>

</section>
<section><title>Mnesia 4.4.12</title>

<section><title>Improvements and New Features</title>
Expand Down
32 changes: 32 additions & 0 deletions lib/mnesia/src/mnesia.appup.src
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
%% -*- erlang -*-
{"%VSN%",
[
{"4.4.12",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []}
]
},
{"4.4.11",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []},
{update, mnesia_locker, soft, soft_purge, soft_purge, []},
{update, mnesia_controller, soft, soft_purge, soft_purge, []}
]
},
{"4.4.10",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []},
{update, mnesia_locker, soft, soft_purge, soft_purge, []},
{update, mnesia_controller, soft, soft_purge, soft_purge, []}
]
Expand All @@ -18,14 +34,30 @@
{"4.4.7", [{restart_application, mnesia}]}
],
[
{"4.4.12",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []}
]
},
{"4.4.11",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []},
{update, mnesia_locker, soft, soft_purge, soft_purge, []},
{update, mnesia_controller, soft, soft_purge, soft_purge, []}
]
},
{"4.4.10",
[
{update, mnesia, soft, soft_purge, soft_purge, []},
{update, mnesia_loader, soft, soft_purge, soft_purge, []},
{update, mnesia_monitor, soft, soft_purge, soft_purge, []},
{update, mnesia_tm, soft, soft_purge, soft_purge, []},
{update, mnesia_locker, soft, soft_purge, soft_purge, []},
{update, mnesia_controller, soft, soft_purge, soft_purge, []}
]
Expand Down
5 changes: 3 additions & 2 deletions lib/mnesia/vsn.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

MNESIA_VSN = 4.4.12
MNESIA_VSN = 4.4.13

TICKETS = OTP-8250
TICKETS = OTP-8402 OTP-8406 OTP-8250
#TICKETS_4.4.12 = OTP-8250
#TICKETS_4.4.11 = OTP-8074
#TICKETS_4.4.10 = OTP-7928 OTP-7968 OTP-8002
#TICKETS_4.4.9 = OTP-7911
Expand Down

0 comments on commit 55d3477

Please sign in to comment.