diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2021-03-16 13:55:13 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2021-03-16 13:55:13 +0000 |
commit | 902ab24466387cb87a09350400b4a9194a481a9b (patch) | |
tree | 4d84c53ac0f1121df4a176f439c794a475b5045f | |
parent | 1a09a4062a7382126a182d8338b6a5afe333bacf (diff) |
Back to development
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/688>
-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 4adc3e0f..9609fb33 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.18.4' +CERBERO_VERSION = '1.18.4.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 6e610146..f898a0af 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.18.4' + version = '1.18.4.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 35c8f739..5ae7e9a5 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.18.4' - tagged_for_release = True + version = '1.18.4.1' + tagged_for_release = False # Decide what stype to use use_git = True |