Skip to content

Commit

Permalink
Release 1.1.2 (#13)
Browse files Browse the repository at this point in the history
* docs: update changelog
* Bump version: 1.1.1 → 1.1.2
* build(deps): pin pydantic to 1.x
* ci: update test strategy

Signed-off-by: Claudio Matsuoka <claudio.matsuoka@canonical.com>
  • Loading branch information
cmatsuoka committed Dec 1, 2023
1 parent 697e4dd commit a275310
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.1
current_version = 1.1.2
commit = True
tag = True

Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linters:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -46,8 +46,13 @@ jobs:
tests:
strategy:
matrix:
os: [macos-10.15, ubuntu-18.04, ubuntu-20.04, windows-2019]
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-20.04]
python-version: ["3.8", "3.10"]
include:
- adjective: focal
- os: ubuntu-22.04
python-version: "3.10"
adjective: jammy

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion craft_grammar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""Enhance part definitions with advanced grammar."""

__version__ = "1.1.1"
__version__ = "1.1.2"


from . import errors
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
*********

1.1.2 (2023-11-30)
------------------

- Include type information

1.1.1 (2022-02-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test =
flake8
isort==5.10.1
mypy==0.991
pydantic
pydantic<2.0
pydocstyle==6.1.1
pylint==2.15.10
pylint-fixme-info
Expand Down

0 comments on commit a275310

Please sign in to comment.