diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2021-09-10 23:58:17 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2021-09-10 23:58:17 +0100 |
commit | 7b43c300fc5859edba91323e15ec96dc54e55c9b (patch) | |
tree | a837d8dac518afaaafab3b3284e424141f6a4af5 | |
parent | 5380699b64d1c2bdddccfb8bd4a90c7852431189 (diff) |
Back to development
-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 1e8ab841..b71be40c 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.5' +CERBERO_VERSION = '1.18.5.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index c4989962..7e2425f0 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.5' + version = '1.18.5.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index ad689e31..96b39346 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.5' - tagged_for_release = True + version = '1.18.5.1' + tagged_for_release = False # Decide what stype to use use_git = True |