Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Feb 19, 2021
1 parent ff31391 commit 89affba
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


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

## [v0.10.0] - 2021-02-19
[v0.10.0]: https://github.com/fastobo/fastobo-py/compare/v0.9.3...v0.10.0
### Added
- `__hash__` implementation to `fastobo.id.BaseIdent` subclasses.
- `__init__` method to classes missing one in `fastobo.header`.
### Changed
- Bumped `pyo3` dependency to `v0.13.2`.
- Bumped `fastobo` dependency to `v0.13.0`.
### Fixed
- Broken `__repr__` implementation for some types.
### Removed
- `unsafe` blocks in derive macros implementation of `IntoPyObject` for OBO clauses.
- Support for Python 3.5.
- `fastobo.id.IdentPrefix` and `fastobo.id.IdentLocal` classes.

### [v0.9.3] - 2020-12-04
[v0.9.3]: https://github.com/fastobo/fastobo-py/compare/v0.9.2...v0.9.3
Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 Martin Larralde
Copyright (c) 2019-2021 Martin Larralde

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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.9.3"
version = "0.10.0"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
license = "MIT"
publish = false
Expand Down Expand Up @@ -33,7 +33,7 @@ features = ["threading", "smartstring"]
version = "0.4.3"
features = ["obo"]
[dependencies.fastobo-py-derive-internal]
version = "0.9.3"
version = "0.10.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.9.3"
version = "0.10.0"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
edition = "2018"
publish = false
Expand Down
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = fastobo
version = 0.9.3
version = 0.10.0
author = Martin Larralde
author-email = martin.larralde@ens-paris-saclay.fr
author-email = martin.larralde@embl.de
home-page = https://github.com/fastobo/fastobo-py
description = Faultless AST for Open Biomedical Ontologies in Python.
long-description = file: README.md
Expand Down Expand Up @@ -46,10 +46,5 @@ tests_require =
[bdist_wheel]
universal = false

[check]
metadata = true
restructuredtext = false
strict = true

[build_rust]
release = true

0 comments on commit 89affba

Please sign in to comment.