summaryrefslogtreecommitdiffstats
path: root/bitbake/ChangeLog
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-08-31 10:47:56 +0000
committerRichard Purdie <richard@openedhand.com>2005-08-31 10:47:56 +0000
commitf54da734eb7b69e8e34de505bd89a13479e230e0 (patch)
treef796bea6f5683dfe3d591ca5390d12fd78e59c96 /bitbake/ChangeLog
parent4b46c1f6e891b1ddd5968536440b888661fade3e (diff)
downloadpoky-f54da734eb7b69e8e34de505bd89a13479e230e0.tar.gz
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@2 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/ChangeLog')
-rw-r--r--bitbake/ChangeLog35
1 files changed, 35 insertions, 0 deletions
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog
new file mode 100644
index 0000000000..db503ffb1a
--- /dev/null
+++ b/bitbake/ChangeLog
@@ -0,0 +1,35 @@
1Changes in BitBake 1.3.2:
2 - reintegration of make.py into BitBake
3 - bbread is gone, use bitbake -e
4 - lots of shell updates and bugfixes
5 - Introduction of the .= and =. operator
6 - Sort variables, keys and groups in bitdoc
7 - Fix regression in the handling of BBCOLLECTIONS
8 - Update the bitbake usermanual
9
10Changes in BitBake 1.3.0:
11 - add bitbake interactive shell (bitbake -i)
12 - refactor bitbake utility in OO style
13 - kill default arguments in methods in the bb.data module
14 - kill default arguments in methods in the bb.fetch module
15 - the http/https/ftp fetcher will fail if the to be
16 downloaded file was not found in DL_DIR (this is needed
17 to avoid unpacking the sourceforge mirror page)
18 - Switch to a cow like data instance for persistent and non
19 persisting mode (called data_smart.py)
20 - Changed the callback of bb.make.collect_bbfiles to carry
21 additional parameters
22 - Drastically reduced the amount of needed RAM by not holding
23 each data instance in memory when using a cache/persistent
24 storage
25
26Changes in BitBake 1.2.1:
27 The 1.2.1 release is meant as a intermediate release to lay the
28 ground for more radical changes. The most notable changes are:
29
30 - Do not hardcode {}, use bb.data.init() instead if you want to
31 get a instance of a data class
32 - bb.data.init() is a factory and the old bb.data methods are delegates
33 - Do not use deepcopy use bb.data.createCopy() instead.
34 - Removed default arguments in bb.fetch
35