diff --git a/api/pyproject.toml b/api/pyproject.toml index c8f9010ba90..53ed8927292 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-api" -version = "1.16.0-rc1" +version = "1.16.0" requires-python = "~=3.12.0" dependencies = [ diff --git a/api/uv.lock b/api/uv.lock index d8b9a7f5ef4..eeaee9224fc 100644 --- a/api/uv.lock +++ b/api/uv.lock @@ -1281,7 +1281,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "1.16.0rc1" +version = "1.16.0" source = { editable = "../dify-agent" } dependencies = [ { name = "httpx" }, @@ -1331,7 +1331,7 @@ docs = [ [[package]] name = "dify-api" -version = "1.16.0rc1" +version = "1.16.0" source = { virtual = "." } dependencies = [ { name = "aliyun-log-python-sdk" }, diff --git a/dify-agent/pyproject.toml b/dify-agent/pyproject.toml index 8ce8f2dc05e..840aca84d1a 100644 --- a/dify-agent/pyproject.toml +++ b/dify-agent/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-agent" -version = "1.16.0-rc1" +version = "1.16.0" 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 2531ff07db7..1ec1438ce51 100644 --- a/dify-agent/uv.lock +++ b/dify-agent/uv.lock @@ -581,7 +581,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "1.16.0rc1" +version = "1.16.0" source = { editable = "." } dependencies = [ { name = "httpx" }, diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index ed42c2c5e8b..35d5a72ff6a 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.16.0-rc1 + image: langgenius/dify-api:1.16.0 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -270,7 +270,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0-rc1 + image: langgenius/dify-api:1.16.0 profiles: - collaboration environment: @@ -296,7 +296,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.16.0-rc1 + image: langgenius/dify-api:1.16.0 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.16.0-rc1 + image: langgenius/dify-api:1.16.0 environment: MODE: beat depends_on: @@ -378,7 +378,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.16.0-rc1 + image: langgenius/dify-web:1.16.0 restart: always env_file: - path: ./envs/core-services/web.env @@ -531,7 +531,7 @@ services: # Local sandbox for Dify Agent shell workspaces. local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.16.0-rc1 + image: langgenius/dify-agent-local-sandbox:1.16.0 restart: always env_file: - path: ./envs/core-services/local-sandbox.env @@ -636,7 +636,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.16.0-rc1 + image: langgenius/dify-agent-backend:1.16.0 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 9c439cad8af..cadfbbb7ae7 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.16.0-rc1 + image: langgenius/dify-api:1.16.0 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -276,7 +276,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0-rc1 + image: langgenius/dify-api:1.16.0 profiles: - collaboration environment: @@ -302,7 +302,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.16.0-rc1 + image: langgenius/dify-api:1.16.0 environment: MODE: worker SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -351,7 +351,7 @@ services: # Celery beat for scheduling periodic tasks. worker_beat: <<: *shared-worker-beat-config - image: langgenius/dify-api:1.16.0-rc1 + image: langgenius/dify-api:1.16.0 environment: MODE: beat depends_on: @@ -384,7 +384,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.16.0-rc1 + image: langgenius/dify-web:1.16.0 restart: always env_file: - path: ./envs/core-services/web.env @@ -537,7 +537,7 @@ services: # Local sandbox for Dify Agent shell workspaces. local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.16.0-rc1 + image: langgenius/dify-agent-local-sandbox:1.16.0 restart: always env_file: - path: ./envs/core-services/local-sandbox.env @@ -642,7 +642,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.16.0-rc1 + image: langgenius/dify-agent-backend:1.16.0 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/web/package.json b/web/package.json index 851f3c15e1f..d4fb07f38c7 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "1.16.0-rc1", + "version": "1.16.0", "private": true, "type": "module", "imports": {