diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2021-06-02 17:46:33 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2021-06-02 17:46:33 +0100 |
commit | bf82c02d189b5b4691e6570897e5da781b9d5aeb (patch) | |
tree | 32248f5e3ac3b39a6376f18f485831f89167aef1 | |
parent | 07527db5abba74b60898887f4856b6aff6174427 (diff) |
Back to development
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/706>
-rw-r--r-- | cerbero/enums.py | 2 | ||||
-rw-r--r-- | packages/custom.py | 2 | ||||
-rw-r--r-- | recipes/custom.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cerbero/enums.py b/cerbero/enums.py index d1e48961..1b0a7716 100644 --- a/cerbero/enums.py +++ b/cerbero/enums.py @@ -20,7 +20,7 @@ from cerbero.errors import FatalError # Safest place to define this since this file imports very few modules -CERBERO_VERSION = '1.19.1' +CERBERO_VERSION = '1.19.1.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 09991cfb..b38997e1 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.19.1' + version = '1.19.1.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 084ad0a6..c5b8a2fa 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -12,8 +12,8 @@ def running_on_cerbero_ci(): class GStreamer(recipe.Recipe): licenses = [License.LGPLv2Plus] - version = '1.19.1' - tagged_for_release = True + version = '1.19.1.1' + tagged_for_release = False # Decide what stype to use use_git = True |