diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/ChangeLog | 3 | ||||
-rw-r--r-- | bitbake/MANIFEST | 1 | ||||
-rwxr-xr-x | bitbake/bin/bitbake | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/__init__.py | 2 |
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 @@ | |||
1 | Changes in BitBake 1.8.x: | 1 | Changes in BitBake 1.8.x: |
2 | - Add bb.utils.prune_suffix function | ||
3 | |||
4 | Changes 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 | |||
20 | lib/bb/fetch/git.py | 20 | lib/bb/fetch/git.py |
21 | lib/bb/fetch/hg.py | 21 | lib/bb/fetch/hg.py |
22 | lib/bb/fetch/local.py | 22 | lib/bb/fetch/local.py |
23 | lib/bb/fetch/osc.py | ||
23 | lib/bb/fetch/perforce.py | 24 | lib/bb/fetch/perforce.py |
24 | lib/bb/fetch/ssh.py | 25 | lib/bb/fetch/ssh.py |
25 | lib/bb/fetch/svk.py | 26 | lib/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 | |||
27 | import bb | 27 | import bb |
28 | from bb import cooker | 28 | from 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 | ||