Skip to content

Commit c0fd0e8

Browse files
authored
Bumps version to 0.11.1. (#292)
1 parent 1d1c3f4 commit c0fd0e8

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8' ]
13+
python-version: ['3.8', '3.9', '3.10', 'pypy-3.8']
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up python

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.11.1 (2023-10-09)
2+
Drops the support for Python versions older than 3.8.
3+
14
### 0.11.0 (2023-10-09)
25
* Refactors the benchmark tool
36
* Uses specific ion-c version to build ion-python C extension. (#250)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for Python.
55
[![Build Status](https://travis-ci.org/amazon-ion/ion-python.svg?branch=master)](https://travis-ci.org/amazon-ion/ion-python)
66
[![Documentation Status](https://readthedocs.org/projects/ion-python/badge/?version=latest)](https://ion-python.readthedocs.io/en/latest/?badge=latest)
77

8-
This package is designed to work with **Python 3**. It is intended to work with all stable minor versions. Newer language features will be used as deemed valuable. Support may be dropped for versions more than six months past EOL.
8+
This package is designed to work with **Python 3.8+**. Newer language features will be used as deemed valuable. Support may be dropped for versions more than six months past EOL.
99

1010
## Getting Started
1111

@@ -81,13 +81,13 @@ installed Python (`requirements.txt` installs `tox`).
8181
Install relevant versions of Python:
8282

8383
```
84-
$ for V in 3.7.10 3.8.10 3.9.5 pypy3.7-7.3.5; do pyenv install $V; done
84+
$ for V in 3.8.10 3.9.5 do pyenv install $V; done
8585
```
8686

8787
Once you have these installations, add them as a local `pyenv` configuration
8888

8989
```
90-
$ pyenv local 3.7.10 3.8.10 3.9.5 pypy3.7-7.3.5
90+
$ pyenv local 3.8.10 3.9.5
9191
```
9292

9393
Assuming you have `pyenv` properly set up (making sure `pyenv init` is evaluated into your shell),

amazon/ion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# specific language governing permissions and limitations under the
1313
# License.
1414
__author__ = 'Amazon.com, Inc.'
15-
__version__ = '0.11.0'
15+
__version__ = '0.11.1'
1616

1717
__all__ = [
1818
'core',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def run_setup():
4646

4747
setup(
4848
name='amazon.ion',
49-
version='0.11.0',
49+
version='0.11.1',
5050
description='A Python implementation of Amazon Ion.',
5151
url='http://github.com/amazon-ion/ion-python',
5252
author='Amazon Ion Team',

0 commit comments

Comments
 (0)