Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 1.2.0 release #29

Merged
merged 2 commits into from
Jun 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3

Expand All @@ -27,7 +27,6 @@ jobs:
- uses: pre-commit/action@v3.0.0
if: matrix['python-version'] != '3.7'


- name: Test with pytest
run: |
poetry run pytest
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@

## Changelog

### 1.2.0

#### Added
* `DatasetClient.search()` now has an `include_isoform` parameter, which specifies if you want isoforms to be returned [[#27](https://github.com/multimeric/Unipressed/pull/27), [@godotgildor](https://github.com/godotgildor)]
* Python 3.11 is now officially supported

#### Changed
* Auto-generated type definitions have been regenerated [[#28](https://github.com/multimeric/Unipressed/pull/28)]. This pulls upstream changes from Uniprot which are description-only:
* All the `cc_` query fields for `Arba` and `Unirule` such as `cc_cofactor` and `cc_domain` hav updated descriptions
* `Uniparc`'s list of databases has increased in the `database` query field

### 1.1.0

#### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "unipressed"
version = "1.1.0"
version = "1.2.0"
description = "Comprehensive Python client for the Uniprot REST API"
authors = ["Michael Milton <michael.r.milton@gmail.com>"]
license = "MIT"
Expand Down