Skip to content

Commit

Permalink
[services] Bump blob-service to version to 1.0.0
Browse files Browse the repository at this point in the history
Summary:
On 1:1 @Ashoat suggested that we can bump Blob service major because we consider it complete with cleanup task implemented.

Depends on D9415

Test Plan: TBD. Build and push docker image, then apply terraform

Reviewers: ashoat, michal, varun, jon

Reviewed By: ashoat

Subscribers: tomek, wyilio, ashoat

Differential Revision: https://phab.comm.dev/D9416
  • Loading branch information
barthap committed Oct 16, 2023
1 parent 053da35 commit 42212ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion services/blob/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/blob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "blob"
description = "Blob service"
homepage = "https://comm.app"
license = "BSD-3-Clause"
version = "0.1.0"
version = "1.0.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
build:
dockerfile: services/blob/Dockerfile
context: ../
image: commapp/blob-server:0.2.0
image: commapp/blob-server:1.0.0
ports:
- '${COMM_SERVICES_PORT_BLOB}:50053'
volumes:
Expand Down
2 changes: 1 addition & 1 deletion services/terraform/remote/service_blob.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
blob_service_image_tag = local.is_staging ? "latest" : "0.2.0"
blob_service_image_tag = local.is_staging ? "latest" : "1.0.0"
blob_service_container_name = "blob-service-server"
blob_service_server_image = "commapp/blob-server:${local.blob_service_image_tag}"

Expand Down

0 comments on commit 42212ba

Please sign in to comment.