Skip to content

Commit

Permalink
Merge pull request #264 from VNG-Realisatie/bump/version_1.4.0-rc3
Browse files Browse the repository at this point in the history
bumpversion to 1.4.0-rc3
  • Loading branch information
MatthijsBekendam authored Mar 23, 2023
2 parents 7b93dde + 31b3648 commit f7f990b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 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 = 1.4.0-rc1
current_version = 1.4.0-rc3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)([-](?P<release>(rc|alpha))+(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Zaken API
=========

:Version: 1.4.0
:Version: 1.4.0-rc3
:Source: https://github.com/VNG-Realisatie/zaken-api
:Keywords: zaken, zaakgericht werken, GEMMA, RGBZ, ZRC

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zrc",
"version": "1.4.0",
"version": "1.4.0-rc3",
"description": "zrc referentie implementatie API",
"directories": {
"doc": "doc"
Expand Down
2 changes: 1 addition & 1 deletion src/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: Zaken API
version: 1.4.0
version: 1.4.0-rc3
description: "Een API om een zaakregistratiecomponent (ZRC) te benaderen.
Expand Down
2 changes: 1 addition & 1 deletion src/zrc/api/tests/test_dso_api_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_api_19_documentation_version_yaml(self):
@override_settings(ROOT_URLCONF="zrc.api.tests.test_urls")
def test_api_24_version_header(self):
response = self.client.get("/test-view")
self.assertEqual(response["API-version"], "1.4.0")
self.assertEqual(response["API-version"], "1.4.0-rc3")


class DSOApi50Tests(APITestCase):
Expand Down
2 changes: 1 addition & 1 deletion src/zrc/conf/includes/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from vng_api_common.conf.api import * # noqa - imports white-listed

API_VERSION = "1.4.0"
API_VERSION = "1.4.0-rc3"

REST_FRAMEWORK = BASE_REST_FRAMEWORK.copy()
REST_FRAMEWORK["PAGE_SIZE"] = 100
Expand Down
5 changes: 3 additions & 2 deletions src/zrc/conf/includes/local_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
if "test" in sys.argv:
DATABASES["default"]["PORT"] = 5433

for logger in LOGGING["loggers"].values():
logger["level"] = "CRITICAL"

for logger in LOGGING["loggers"].values():
logger["level"] = "CRITICAL"


INSTALLED_APPS += ["django_extensions"]

0 comments on commit f7f990b

Please sign in to comment.