Skip to content

Commit

Permalink
Bump version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dojeda committed Jul 2, 2019
1 parent 2b095bb commit 2c1af87
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,24 @@ This document lists all important changes to Quetzal.

Quetzal version numbers follow `semantic versioning <http://semver.org>`_.

0.2.x (unreleased)
X.Y.Z (unreleased)
------------------

Planned:

* Better commit detection with a 3-way merge detection


0.3.0 (2019-07-02)
------------------

* Added GCP cluster auto-scaling.
* Added k8s horizontal scaler for web and worker.
* Added certbot for certificate management.
* Started rewrite and restructuring of documentation.
* Changed upload to systematically save into the workspace data directory.
* Changed commit to copy from workspace data directory to the data directory.
* Implemented file delete.

0.2.0 (2019-03-21)
------------------
Expand Down
2 changes: 1 addition & 1 deletion k8s/db-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: db
image: gcr.io/quetzal/quetzal/db:0.2.0
image: gcr.io/quetzal/quetzal/db:0.3.0
imagePullPolicy: Always
ports:
- containerPort: 5432
Expand Down
2 changes: 1 addition & 1 deletion k8s/nginx-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: nginx
image: gcr.io/quetzal/quetzal/nginx:0.2.0
image: gcr.io/quetzal/quetzal/nginx:0.3.0
imagePullPolicy: Always
ports:
- containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion k8s/rabbitmq-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: rabbitmq
image: gcr.io/quetzal/quetzal/rabbitmq:0.2.0
image: gcr.io/quetzal/quetzal/rabbitmq:0.3.0
imagePullPolicy: Always
ports:
- containerPort: 5672
Expand Down
2 changes: 1 addition & 1 deletion k8s/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: web
image: gcr.io/quetzal/quetzal/app:0.2.0
image: gcr.io/quetzal/quetzal/app:0.3.0
imagePullPolicy: Always
ports:
- containerPort: 5000
Expand Down
2 changes: 1 addition & 1 deletion k8s/worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: worker
image: gcr.io/quetzal/quetzal/app:0.2.0
image: gcr.io/quetzal/quetzal/app:0.3.0
imagePullPolicy: Always
command:
- /entrypoint-worker.sh
Expand Down
1 change: 1 addition & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ info:
API version | Changes
------------|---------
0.3.0 | [API changes](https://github.com/quetz-al/quetzal/releases/tag/v0.3.0)
0.2.0 | [API changes](https://github.com/quetz-al/quetzal/releases/tag/v0.2.0)
0.1.0 | [API changes](https://github.com/quetz-al/quetzal/releases/tag/v0.1.0)
Expand Down

0 comments on commit 2c1af87

Please sign in to comment.