Skip to content

Commit f463cb4

Browse files
Merge pull request #189 from VNG-Realisatie/bump_production_version
bump production version
2 parents 3611a30 + 936132f commit f463cb4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 1.2.0-rc7
4+
current_version = 1.2.0
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)([-](?P<release>(rc|alpha))+(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Documenten API
33
==============
44

5-
:Version: 1.2.0-rc7
5+
:Version: 1.2.0
66
:Source: https://github.com/VNG-Realisatie/documenten-api
77
:Keywords: zaken, zaakgericht werken, GEMMA, RGBZ, DRC
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drc",
3-
"version": "1.2.0-rc7",
3+
"version": "1.2.0",
44
"description": "drc referentie implementatie API",
55
"main": "src/index.js",
66
"directories": {

src/drc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import re
88
from collections import namedtuple
99

10-
__version__ = "1.2.0-rc7"
10+
__version__ = "1.2.0"
1111
__author__ = "VNG Realisatie"
1212
__homepage__ = "https://github.com/VNG-Realisatie/documenten-api"
1313
__docformat__ = "restructuredtext"

src/drc/api/tests/test_dso_api_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_api_19_documentation_version_yaml(self):
2323
@override_settings(ROOT_URLCONF="drc.api.tests.test_urls")
2424
def test_api_24_version_header(self):
2525
response = self.client.get("/test-view")
26-
self.assertEqual(response["API-version"], "1.2.0-rc7")
26+
self.assertEqual(response["API-version"], "1.2.0")
2727

2828

2929
class DSOApi50Tests(APITestCase):

src/drc/conf/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
API_VERSION = "1.2.0-rc7"
5+
API_VERSION = "1.2.0"
66

77
REST_FRAMEWORK = BASE_REST_FRAMEWORK.copy()
88
REST_FRAMEWORK["PAGE_SIZE"] = 100

src/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: Documenten API
4-
version: 1.2.0-rc7
4+
version: 1.2.0
55
description:
66
"Een API om een documentregistratiecomponent (DRC) te benaderen.\n\n\
77
In een documentregistratiecomponent worden INFORMATIEOBJECTen opgeslagen. Een\n\

0 commit comments

Comments
 (0)