Skip to content

Commit 5af034b

Browse files
committed
Revert bumpversion patch, use dict.get to avoid KeyErrors
1 parent 8f6519e commit 5af034b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 6.8.1
2+
current_version = 6.8.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>[A-z0-9-]+)

api/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from db.python.utils import get_logger
2020

2121
# This tag is automatically updated by bump2version
22-
_VERSION = '6.8.1'
22+
_VERSION = '6.8.0'
2323

2424
logger = get_logger()
2525

db/python/layers/seqr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ async def post_es_index_update(self, session: aiohttp.ClientSession, url: str, p
408408
headers=headers,
409409
)
410410
resp.raise_for_status()
411-
return f'Updated ES index {post_json["elasticsearchIndex"]}: {resp.status} - {resp.reason}'
411+
return f'Updated ES index {post_json.get("elasticsearchIndex")}: {resp.status} - {resp.reason}'
412412

413413
async def update_es_index(
414414
self,

deploy/python/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.8.1
1+
6.8.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name=PKG,
2121
# This tag is automatically updated by bump2version
22-
version='6.8.1',
22+
version='6.8.0',
2323
description='Python API for interacting with the Sample API system',
2424
long_description=readme,
2525
long_description_content_type='text/markdown',

web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamist",
3-
"version": "6.8.1",
3+
"version": "6.8.0",
44
"private": true,
55
"dependencies": {
66
"@apollo/client": "^3.7.3",

0 commit comments

Comments
 (0)