Skip to content

Commit

Permalink
Bumping version to 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Dec 14, 2023
1 parent f365304 commit 670130e
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 14 deletions.
15 changes: 15 additions & 0 deletions .changes/1.30.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"schema-version": "1.0",
"changes": [
{
"type": "feature",
"category": "Python",
"description": "Add support for Python 3.11 (#2053)"
},
{
"type": "enhancement",
"category": "Pip",
"description": "Update version dependency on pip (#2080)"
}
]
}

This file was deleted.

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.30.0
======

* feature:Python:Add support for Python 3.11 (#2053)
* enhancement:Pip:Update version dependency on pip (#2080)


1.29.0
======

Expand Down
2 changes: 1 addition & 1 deletion chalice/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from collections.abc import MutableMapping


__version__: str = '1.29.0'
__version__: str = '1.30.0'

from typing import List, Dict, Any, Optional, Sequence, Union, Callable, Set, \
Iterator, TYPE_CHECKING, Tuple
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.29'
version = u'1.30'
# The full version, including alpha/beta/rc tags.
release = u'1.29.0'
release = u'1.30.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def recursive_include(relative_dir):

setup(
name='chalice',
version='1.29.0',
version='1.30.0',
description="Microframework",
long_description=README,
author="James Saryerwinnie",
Expand Down

0 comments on commit 670130e

Please sign in to comment.