Skip to content

Commit

Permalink
Merge pull request #174 from VNG-Realisatie/bump/version-1.3.0-rc3
Browse files Browse the repository at this point in the history
bumpversion to 1.3.0-rc3
  • Loading branch information
MatthijsBekendam authored Mar 23, 2023
2 parents 6fde108 + 5733a42 commit aa86e14
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.3.0-rc1
current_version = 1.3.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 @@
Catalogi API
============

:Version: 1.3.0-rc1
:Version: 1.3.0-rc3
:Source: https://github.com/VNG-Realisatie/zaaktypecataloguscomponent
:Keywords: zaaktypen, ztc, imztc, ztc2, ztcaas, saas, rest, api

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": "ztc",
"version": "1.3.0-rc1",
"version": "1.3.0-rc3",
"description": "ztc referentie-implementatie API",
"directories": {"doc": "doc"},
"scripts": {"build": "npm run bundle", "bundle": "webpack", "watch": "webpack -w"},
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: Catalogi API
version: 1.3.0-rc1
version: 1.3.0-rc3
description: |
Een API om een zaaktypecatalogus (ZTC) te benaderen.

Expand Down
2 changes: 1 addition & 1 deletion src/ztc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import re
from collections import namedtuple

__version__ = "1.3.0-rc1"
__version__ = "1.3.0-rc3"
__author__ = "Maykin Media B.V., VNG Realisatie"
__homepage__ = "https://github.com/VNG-Realisatie/zaaktypecataloguscomponent/"
__docformat__ = "restructuredtext"
Expand Down
2 changes: 1 addition & 1 deletion src/ztc/conf/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.3.0-rc1"
API_VERSION = "1.3.0-rc3"

REST_FRAMEWORK = BASE_REST_FRAMEWORK.copy()
REST_FRAMEWORK["DEFAULT_PERMISSION_CLASSES"] = (
Expand Down

0 comments on commit aa86e14

Please sign in to comment.