Skip to content

Commit f64bd82

Browse files
Bumping version to 1.27.3
1 parent 6ee924b commit f64bd82

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

.changes/1.27.3.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"schema-version": "1.0",
3+
"changes": [
4+
{
5+
"type": "bugfix",
6+
"category": "Versioning",
7+
"description": "Fix version string updates used in the release process (#1971)"
8+
}
9+
]
10+
}

.changes/next-release/29896374681-bugfix-Versioning-16383.json

-5
This file was deleted.

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
1.27.3
6+
======
7+
8+
* bugfix:Versioning:Fix version string updates used in the release process (#1971)
9+
10+
511
1.27.2
612
======
713

chalice/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from collections.abc import MutableMapping
2323

2424

25-
__version__: str = '1.27.2'
25+
__version__: str = '1.27.3'
2626

2727
from typing import List, Dict, Any, Optional, Sequence, Union, Callable, Set, \
2828
Iterator, TYPE_CHECKING, Tuple

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = u'1.27'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'1.27.2'
66+
release = u'1.27.3'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def recursive_include(relative_dir):
3636

3737
setup(
3838
name='chalice',
39-
version='1.27.2',
39+
version='1.27.3',
4040
description="Microframework",
4141
long_description=README,
4242
author="James Saryerwinnie",

0 commit comments

Comments
 (0)