diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2020-10-27 00:30:32 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2020-10-27 00:30:32 +0000 |
commit | e3ce1b6dd4d6d5f65b9eaef1e5c46e865e89a9a2 (patch) | |
tree | 6c9c98ca423fdd7d4397d90521ce0c5dad428584 | |
parent | 0bc6719744f059634729d0bd8ccd1137267f9d94 (diff) |
Build 1.16 branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/650>
-rw-r--r-- | cerbero/enums.py | 2 | ||||
-rw-r--r-- | packages/custom.py | 2 | ||||
-rw-r--r-- | recipes/custom.py | 4 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/cerbero/enums.py b/cerbero/enums.py index 2f877a09..46832870 100644 --- a/cerbero/enums.py +++ b/cerbero/enums.py @@ -18,7 +18,7 @@ # Safest place to define this since this file imports very few modules -CERBERO_VERSION = '1.16.2.1' +CERBERO_VERSION = '1.16.3.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 21ff381d..18ebc306 100644 --- a/packages/custom.py +++ b/packages/custom.py @@ -6,7 +6,7 @@ from cerbero.enums import License class GStreamer: url = "http://gstreamer.freedesktop.org" - version = '1.16.3' + version = '1.16.3.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 94609833..3c521c85 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -11,8 +11,8 @@ from cerbero.utils import shell, to_unixpath class GStreamer(recipe.Recipe): licenses = [License.LGPLv2Plus] - version = '1.16.3' - tagged_for_release = True + version = '1.16.3.1' + tagged_for_release = False if not tagged_for_release or recipe.Recipe._using_manifest_force_git: # Pre-release version, use git master @@ -128,7 +128,7 @@ class extended_sdist(setuptools_sdist.sdist): setup( name = "cerbero", - version = '1.16.3', + version = CERBERO_VERSION, author = "Andoni Morales", author_email = "amorales@fluendo.com", description = ("Multi platform build system for Open Source projects"), |