diff --git a/api/pyproject.toml b/api/pyproject.toml index 519e400c15f..5281582182b 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-api" -version = "1.15.0" +version = "1.16.0-rc1" requires-python = "~=3.12.0" dependencies = [ diff --git a/api/uv.lock b/api/uv.lock index 8fc561aba49..0234ac886f1 100644 --- a/api/uv.lock +++ b/api/uv.lock @@ -1280,7 +1280,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "0.1.0" +version = "1.16.0rc1" source = { editable = "../dify-agent" } dependencies = [ { name = "anyio" }, @@ -1338,7 +1338,7 @@ docs = [ [[package]] name = "dify-api" -version = "1.15.0" +version = "1.16.0rc1" source = { virtual = "." } dependencies = [ { name = "aliyun-log-python-sdk" }, diff --git a/dify-agent/pyproject.toml b/dify-agent/pyproject.toml index 0d871a4e281..fd2fe91a44b 100644 --- a/dify-agent/pyproject.toml +++ b/dify-agent/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-agent" -version = "0.1.0" +version = "1.16.0-rc1" description = "Add your description here" readme = "README.md" requires-python = ">=3.12,<4.0" diff --git a/dify-agent/uv.lock b/dify-agent/uv.lock index dfdbaaca0da..58717b4db79 100644 --- a/dify-agent/uv.lock +++ b/dify-agent/uv.lock @@ -590,7 +590,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "0.1.0" +version = "1.16.0rc1" source = { editable = "." } dependencies = [ { name = "anyio" }, diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index 7c7e7f571db..e320f9c1c98 100644 --- a/docker/docker-compose-template.yaml +++ b/docker/docker-compose-template.yaml @@ -220,7 +220,7 @@ services: # API service api: <<: *shared-api-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -267,7 +267,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 profiles: - collaboration environment: @@ -293,7 +293,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: worker SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -339,7 +339,7 @@ services: # Celery beat for scheduling periodic tasks. worker_beat: <<: *shared-worker-beat-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: beat depends_on: @@ -372,7 +372,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.15.0 + image: langgenius/dify-web:1.16.0-rc1 restart: always env_file: - path: ./envs/core-services/web.env @@ -524,7 +524,7 @@ services: # Local sandbox for Dify Agent shell workspaces. local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.15.0 + image: langgenius/dify-agent-local-sandbox:1.16.0-rc1 restart: always environment: SHELLCTL_AUTH_TOKEN: ${DIFY_AGENT_SHELLCTL_AUTH_TOKEN:-} @@ -626,7 +626,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.15.0 + image: langgenius/dify-agent-backend:1.16.0-rc1 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 9ce100e4183..0bbd77a9e94 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -226,7 +226,7 @@ services: # API service api: <<: *shared-api-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -273,7 +273,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 profiles: - collaboration environment: @@ -299,7 +299,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: worker SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -345,7 +345,7 @@ services: # Celery beat for scheduling periodic tasks. worker_beat: <<: *shared-worker-beat-config - image: langgenius/dify-api:1.15.0 + image: langgenius/dify-api:1.16.0-rc1 environment: MODE: beat depends_on: @@ -378,7 +378,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.15.0 + image: langgenius/dify-web:1.16.0-rc1 restart: always env_file: - path: ./envs/core-services/web.env @@ -530,7 +530,7 @@ services: # Local sandbox for Dify Agent shell workspaces. local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.15.0 + image: langgenius/dify-agent-local-sandbox:1.16.0-rc1 restart: always environment: SHELLCTL_AUTH_TOKEN: ${DIFY_AGENT_SHELLCTL_AUTH_TOKEN:-} @@ -632,7 +632,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.15.0 + image: langgenius/dify-agent-backend:1.16.0-rc1 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/web/package.json b/web/package.json index 9f164abb54e..693a1f4be78 100644 --- a/web/package.json +++ b/web/package.json @@ -1,7 +1,7 @@ { "name": "dify-web", "type": "module", - "version": "1.15.0", + "version": "1.16.0-rc1", "private": true, "imports": { "#i18n": {