summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/ChangeLog3
-rw-r--r--bitbake/MANIFEST1
-rwxr-xr-xbitbake/bin/bitbake2
-rw-r--r--bitbake/lib/bb/__init__.py2
4 files changed, 6 insertions, 2 deletions
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog
index a053ab839e..9fe3bf3d83 100644
--- a/bitbake/ChangeLog
+++ b/bitbake/ChangeLog
@@ -1,4 +1,7 @@
1Changes in BitBake 1.8.x: 1Changes in BitBake 1.8.x:
2 - Add bb.utils.prune_suffix function
3
4Changes in BitBake 1.8.12:
2 - Fix -f (force) in conjunction with -b 5 - Fix -f (force) in conjunction with -b
3 - Fix exit code for build failures in --continue mode 6 - Fix exit code for build failures in --continue mode
4 - Fix git branch tags fetching 7 - Fix git branch tags fetching
diff --git a/bitbake/MANIFEST b/bitbake/MANIFEST
index 0671f440bc..39e8017759 100644
--- a/bitbake/MANIFEST
+++ b/bitbake/MANIFEST
@@ -20,6 +20,7 @@ lib/bb/fetch/cvs.py
20lib/bb/fetch/git.py 20lib/bb/fetch/git.py
21lib/bb/fetch/hg.py 21lib/bb/fetch/hg.py
22lib/bb/fetch/local.py 22lib/bb/fetch/local.py
23lib/bb/fetch/osc.py
23lib/bb/fetch/perforce.py 24lib/bb/fetch/perforce.py
24lib/bb/fetch/ssh.py 25lib/bb/fetch/ssh.py
25lib/bb/fetch/svk.py 26lib/bb/fetch/svk.py
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 6a69e340f1..f3294106ef 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -27,7 +27,7 @@ sys.path.insert(0,os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'l
27import bb 27import bb
28from bb import cooker 28from bb import cooker
29 29
30__version__ = "1.8.11" 30__version__ = "1.8.13"
31 31
32#============================================================================# 32#============================================================================#
33# BBOptions 33# BBOptions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index c452d529c1..7d01d52b64 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -21,7 +21,7 @@
21# with this program; if not, write to the Free Software Foundation, Inc., 21# with this program; if not, write to the Free Software Foundation, Inc.,
22# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 23
24__version__ = "1.8.11" 24__version__ = "1.8.13"
25 25
26__all__ = [ 26__all__ = [
27 27