From d3a31783002ea00cd31113e7294078236b9a6728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 25 Jun 2024 11:26:12 +0200 Subject: [PATCH] Bumped version to 3.6-alpha1 --- Makefile | 2 +- addon/flamenco/__init__.py | 2 +- addon/flamenco/manager/__init__.py | 2 +- addon/flamenco/manager/api_client.py | 2 +- addon/flamenco/manager/configuration.py | 2 +- addon/flamenco/manager_README.md | 2 +- web/app/src/manager-api/ApiClient.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index da8f9ce0..446bd6bb 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PKG := projects.blender.org/studio/flamenco # To update the version number in all the relevant places, update the VERSION # variable below and run `make update-version`. -VERSION := 3.6-alpha0 +VERSION := 3.6-alpha1 # "alpha", "beta", or "release". RELEASE_CYCLE := alpha diff --git a/addon/flamenco/__init__.py b/addon/flamenco/__init__.py index 3666df3e..275bb3d2 100644 --- a/addon/flamenco/__init__.py +++ b/addon/flamenco/__init__.py @@ -12,7 +12,7 @@ bl_info = { "doc_url": "https://flamenco.blender.org/", "category": "System", "support": "COMMUNITY", - "warning": "This is version 3.6-alpha0 of the add-on, which is not a stable release", + "warning": "This is version 3.6-alpha1 of the add-on, which is not a stable release", } from pathlib import Path diff --git a/addon/flamenco/manager/__init__.py b/addon/flamenco/manager/__init__.py index 543f5756..671b6bb9 100644 --- a/addon/flamenco/manager/__init__.py +++ b/addon/flamenco/manager/__init__.py @@ -10,7 +10,7 @@ """ -__version__ = "3.6-alpha0" +__version__ = "3.6-alpha1" # import ApiClient from flamenco.manager.api_client import ApiClient diff --git a/addon/flamenco/manager/api_client.py b/addon/flamenco/manager/api_client.py index 7d65fe25..d253aaa9 100644 --- a/addon/flamenco/manager/api_client.py +++ b/addon/flamenco/manager/api_client.py @@ -76,7 +76,7 @@ class ApiClient(object): self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Flamenco/3.6-alpha0 (Blender add-on)' + self.user_agent = 'Flamenco/3.6-alpha1 (Blender add-on)' def __enter__(self): return self diff --git a/addon/flamenco/manager/configuration.py b/addon/flamenco/manager/configuration.py index 4f6b9715..cfd82087 100644 --- a/addon/flamenco/manager/configuration.py +++ b/addon/flamenco/manager/configuration.py @@ -404,7 +404,7 @@ conf = flamenco.manager.Configuration( "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 1.0.0\n"\ - "SDK Package Version: 3.6-alpha0".\ + "SDK Package Version: 3.6-alpha1".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/addon/flamenco/manager_README.md b/addon/flamenco/manager_README.md index 7f02e106..8b19d260 100644 --- a/addon/flamenco/manager_README.md +++ b/addon/flamenco/manager_README.md @@ -4,7 +4,7 @@ Render Farm manager API The `flamenco.manager` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 1.0.0 -- Package version: 3.6-alpha0 +- Package version: 3.6-alpha1 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://flamenco.blender.org/](https://flamenco.blender.org/) diff --git a/web/app/src/manager-api/ApiClient.js b/web/app/src/manager-api/ApiClient.js index 004f5136..9a81ffca 100644 --- a/web/app/src/manager-api/ApiClient.js +++ b/web/app/src/manager-api/ApiClient.js @@ -55,7 +55,7 @@ class ApiClient { * @default {} */ this.defaultHeaders = { - 'User-Agent': 'Flamenco/3.6-alpha0 / webbrowser' + 'User-Agent': 'Flamenco/3.6-alpha1 / webbrowser' }; /**