Skip to content

Commit

Permalink
changelog/version
Browse files Browse the repository at this point in the history
  • Loading branch information
wimglenn committed Jun 11, 2024
1 parent 9c9ec7f commit 82a42e9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
run-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand All @@ -35,6 +35,22 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}

tests-37:
name: Python 3.7 on ubuntu-20.04
runs-on: ubuntu-20.04
container:
image: python:3.7
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
pip install -r tests/requirements.txt
python -m pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}

tests-27:
name: Python 2.7 on ubuntu-20.04
runs-on: ubuntu-20.04
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ To run the tests locally:
Changelog
---------

- 1.20.2 Template field names can now contain - character i.e. HYPHEN-MINUS, chr(0x2d)
- 1.20.1 The `%f` directive accepts 1-6 digits, like strptime (thanks @bbertincourt)
- 1.20.0 Added support for strptime codes (thanks @bendichter)
- 1.19.1 Added support for sign specifiers in number formats (thanks @anntzer)
Expand Down
2 changes: 1 addition & 1 deletion parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from functools import partial


__version__ = "1.20.1"
__version__ = "1.20.2"
__all__ = ["parse", "search", "findall", "with_pattern"]

log = logging.getLogger(__name__)
Expand Down

0 comments on commit 82a42e9

Please sign in to comment.