Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jul 8, 2022
1 parent 76174ba commit c893123
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build Linux wheels(${{ matrix.image }})
strategy:
matrix:
image: [pypywheels/manylinux2010-pypy_x86_64, quay.io/pypa/manylinux2014_aarch64]
image: [quay.io/pypa/manylinux2014_x86_64, quay.io/pypa/manylinux2014_aarch64]
python-version: [cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310]
env:
pyo3-python: /opt/python/${{ matrix.python-version }}/bin/python
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.11.1...HEAD
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.12.0...HEAD

## [v0.12.0] - 2022-07-08
[v0.12.0]: https://github.com/fastobo/fastobo-py/compare/v0.11.1...v0.12.0
### Changed
- Improve handling of exceptions in Rust code.
- Bump `pyo3` dependency to `v0.16`.
- Intern constant strings returned by `raw_tag` methods of clause objects.
### Fixed
- Compilation of `fastobo` extension with newer `setuptools-rust` versions ([#300](https://github.com/fastobo/fastobo-py/pull/300)).
### Removed
- Support for Python 3.6.

## [v0.11.1] - 2022-01-23
[v0.11.1]: https://github.com/fastobo/fastobo-py/compare/v0.11.0...v0.11.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["derive"]

[package]
name = "fastobo-py"
version = "0.11.1"
version = "0.12.0"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
license = "MIT"
publish = false
Expand Down Expand Up @@ -40,7 +40,7 @@ version = "0.11.0"
[dependencies.horned-functional]
version = "0.4.0"
[dependencies.fastobo-py-derive-internal]
version = "0.11.1"
version = "0.12.0"
path = "./derive"

[features]
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastobo-py-derive-internal"
version = "0.11.1"
version = "0.12.0"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fastobo
version = 0.11.1
version = 0.12.0
author = Martin Larralde
author_email = martin.larralde@embl.de
home_page = https://github.com/fastobo/fastobo-py
Expand Down

0 comments on commit c893123

Please sign in to comment.