Rev 137: Update NEWS for some of the changes, and release as 0.2.0 in http://bazaar.launchpad.net/~meliae-dev/meliae/trunk

John Arbash Meinel john at arbash-meinel.com
Fri Jan 8 23:04:02 GMT 2010


At http://bazaar.launchpad.net/~meliae-dev/meliae/trunk

------------------------------------------------------------
revno: 137
revision-id: john at arbash-meinel.com-20100108230350-gkmut7y2r0b4g9ag
parent: john at arbash-meinel.com-20100108230040-lcbz7lsww743mm0g
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: trunk
timestamp: Fri 2010-01-08 17:03:50 -0600
message:
  Update NEWS for some of the changes, and release as 0.2.0
-------------- next part --------------
=== modified file 'CHANGES.txt'
--- a/CHANGES.txt	2010-01-04 13:15:05 +0000
+++ b/CHANGES.txt	2010-01-08 23:03:50 +0000
@@ -5,10 +5,13 @@
 .. contents:: List of Releases
    :depth: 1
 
-Meliae 0.2.0 (not released yet)
-###############################
-
-:0.2.0: (not released yet)
+Meliae 0.2.0
+############
+
+:0.2.0: 2009-01-08
+
+A fairly major reworking of the internals, provides significant memory
+savings and easier navigation of the object graph.
 
 
 New Features
@@ -30,6 +33,14 @@
   Meliae/Python how many bytes it is consuming in memory.
   (John Arbash Meinel)
 
+* Memory objects now use a ``.children`` and ``.parents`` notation,
+  rather than ``.ref_list`` and ``.referrers``. For one, this makes it
+  clearer as 'referred to' and 'referred from' is a bit tricky. We also
+  now have ``.c`` and ``.p`` which return a list of Memory objects,
+  rather than just a list of addresses. This makes it very quick to
+  move around. Especially with ``.refs_as_dict`` and other such
+  niceties. (John Arbash Meinel)
+
 
 Bug Fixes
 *********

=== modified file 'meliae/__init__.py'
--- a/meliae/__init__.py	2010-01-03 21:04:49 +0000
+++ b/meliae/__init__.py	2010-01-08 23:03:50 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Canonical Ltd
+# Copyright (C) 2009, 2010 Canonical Ltd
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License version 3 as
@@ -14,6 +14,6 @@
 
 """A simple way to dump memory consumption of a running python program."""
 
-version_info = (0, 2, 0, 'dev', 0)
+version_info = (0, 2, 0, 'final', 0)
 __version__ = '.'.join(map(str, version_info))
 



More information about the bazaar-commits mailing list