Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 23, 2022
1 parent 9363100 commit 6d7ed24
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
21 changes: 17 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.10.2-post1...HEAD
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.11.0...HEAD

## [v0.11.0] - 2022-01-23
[v0.11.0]: https://github.com/fastobo/fastobo-py/compare/v0.10.2-post1...v0.11.0
### Added
- `fastobo.exceptions` module with dedicated exception types to report specific errors.
- `fastobo.dump_owl` to convert and write an OBO document to an OWL ontology (using `fastobo-owl` and `horned-owl`) in Functional-style syntax (using `horned-functional`).
### Changed
- Bumped `fastobo` to `v0.14.0`.
- Bumped `fastobo-graphs` to `v0.4.4`.
- `DateClause` may now store a `datetime.date` instead of a `datetime.datetime` if the source document contains a date without time specifier.
- PyPI source distribution now contains vendored Rust sources, allowing compilation without network access.
### Fixed
- `setup.py` script not auto-installing the Rust compiler in latest `setuptools_rust` versions.

## [v0.10.2-post1] - 2021-09-19
[v0.10.2-post1]: https://github.com/fastobo/fastobo-py/compare/v0.10.2...v0.10.2-post1
Expand All @@ -18,7 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Bumped `pyo3` dependency to `v0.14.1`.
### Fixed
- `fastobo.iter` erroneously wrapping `SyntaxError` raised in the header into a `TypeError`.
- `fastobo.iter` erroneously wrapping `SyntaxError` raised in the header into a `TypeError`.

## [v0.10.1] - 2021-03-30
[v0.10.1]: https://github.com/fastobo/fastobo-py/compare/v0.10.0...v0.10.1
Expand All @@ -45,8 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### [v0.9.3] - 2020-12-04
[v0.9.3]: https://github.com/fastobo/fastobo-py/compare/v0.9.2...v0.9.3
### Fixed
- `setup.py` crashing when compiling from source on a platform with stable
Rust as the default toolchain ([#182](https://github.com/fastobo/fastobo-py/pull/182),
- `setup.py` crashing when compiling from source on a platform with stable
Rust as the default toolchain ([#182](https://github.com/fastobo/fastobo-py/pull/182),
thanks to [@alexhenrie](https://github.com/alexhenrie)).

### [v0.9.2] - 2020-09-04
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.10.2"
version = "0.11.0"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
license = "MIT"
publish = false
Expand Down Expand Up @@ -40,7 +40,7 @@ version = "0.10.0"
[dependencies.horned-functional]
version = "0.3.3"
[dependencies.fastobo-py-derive-internal]
version = "0.10.1"
version = "0.11.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.10.2"
version = "0.11.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.10.2-post1
version = 0.11.0
author = Martin Larralde
author_email = martin.larralde@embl.de
home_page = https://github.com/fastobo/fastobo-py
Expand Down

0 comments on commit 6d7ed24

Please sign in to comment.