Skip to content

Commit

Permalink
Merge pull request #468 from open-zaak/release/1.0.0
Browse files Browse the repository at this point in the history
Draft 1.0.0 release
  • Loading branch information
sergei-maertens committed Feb 6, 2020
2 parents 59e40b2 + 61bd482 commit 1934b41
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 0.9.0
current_version = 1.0.0

[bumpversion:file:README.rst]

Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changelog
=========

1.0.0 (TDB)
-----------
1.0.0 (2020-02-06)
------------------

First release of Open Zaak.
🎉 First release of Open Zaak.

Features:

Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,9 @@ ARG SECRET_KEY=dummy
# Run collectstatic, so the result is already included in the image
RUN python src/manage.py collectstatic --noinput

LABEL org.label-schema.vcs-ref=$COMMIT_HASH \
org.label-schema.vcs-url="https://github.com/open-zaak/open-zaak" \
org.label-schema.name="Open Zaak"

EXPOSE 8000
CMD ["/start.sh"]
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Zaak
=========

:Version: 0.9.0
:Version: 1.0.0
:Source: https://github.com/open-zaak/open-zaak
:Keywords: zaken, zaakgericht werken, zaken-api, catalogi-api, besluiten-api, documenten-api
:PythonVersion: 3.7
Expand Down
3 changes: 3 additions & 0 deletions bin/docker_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
set -eu
set +x

git_hash=${TRAVIS_COMMIT:-`git rev-parse HEAD`}

# Login to Docker Hub
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin

Expand All @@ -21,6 +23,7 @@ TAG=${1:-latest}
# Build the image
docker build \
-t $REPO:$TAG \
--build-arg COMMIT_HASH=$git_hash
.

# Push the image
Expand Down
2 changes: 1 addition & 1 deletion deployment/kubernetes/apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
roles:
- role: open_zaak_k8s
vars: # these override vars_files
openzaak_version: '0.9.0'
openzaak_version: '1.0.0'
openzaak_db_host: "{{ db.privateIp }}"
openzaak_db_port: "{{ db.port }}"
tags:
Expand Down
2 changes: 1 addition & 1 deletion deployment/single-server/open-zaak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

- role: open_zaak_docker
vars:
openzaak_version: '0.9.0' # see https://hub.docker.com/r/openzaak/open-zaak/tags
openzaak_version: '1.0.0' # see https://hub.docker.com/r/openzaak/open-zaak/tags
tags:
- replicas

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openzaak",
"version": "0.9.0",
"version": "1.0.0",
"description": "Open Zaak",
"main": "src/index.js",
"directories": {
Expand Down

0 comments on commit 1934b41

Please sign in to comment.