Skip to content

Commit

Permalink
Merge pull request #335 from Healthlane-Technologies/v0-3-0-rc-1
Browse files Browse the repository at this point in the history
0.3.0.rc2
  • Loading branch information
shahharsh176 authored Aug 2, 2024
2 parents ce7b214 + 1fe2ac8 commit 4d40720
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0rc2] - 2024-08-02

### Added
- 0.3.0rc.2 updated 1

## [0.3.0rc1] - 2024-08-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

README = os.path.join(PROJECT_DIR, "README.md")

PLATFORM_VERSION = "0.3.0rc1"
PLATFORM_VERSION = "0.3.0rc2"


def get_requirements(env):
Expand Down
2 changes: 1 addition & 1 deletion backend/src/zango/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from zango.core import internal_requests

__version__ = "0.3.0rc1"
__version__ = "0.3.0rc2"
2 changes: 1 addition & 1 deletion deploy/dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kczelthy/zango:0.3.0rc1
FROM kczelthy/zango:0.3.0rc2

RUN apt update
RUN apt-get install -y net-tools
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker_compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ services:
retries: 3

celery_beat:
image: kczelthy/zango:0.3.0rc1
image: kczelthy/zango:0.3.0rc2
command: /bin/sh -c "cd ${PROJECT_NAME} && celery -A ${PROJECT_NAME} beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler"
volumes:
- .:/zango/
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker_compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ services:
retries: 3

celery_beat:
image: kczelthy/zango:0.3.0rc1
image: kczelthy/zango:0.3.0rc2
command: /bin/sh -c "cd ${PROJECT_NAME} && celery -A ${PROJECT_NAME} beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler"
volumes:
- .:/zango/
Expand Down
2 changes: 1 addition & 1 deletion deploy/prod.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kczelthy/zango:0.3.0rc1
FROM kczelthy/zango:0.3.0rc2

RUN apt update
RUN pip install gunicorn
Expand Down

0 comments on commit 4d40720

Please sign in to comment.