Skip to content

Commit 1e55509

Browse files
committed
Release v2.4.6
1 parent f997ff1 commit 1e55509

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
name: Test
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- v*
69

710
jobs:
811
test_linux:
@@ -25,6 +28,9 @@ jobs:
2528
- python-version: 3.9
2629
python-release: v3.9
2730
python-impl: CPython
31+
- python-version: '3.10'
32+
python-release: v3.10
33+
python-impl: CPython
2834
#- python-version: pypy-3.6
2935
# python-release: v3.6
3036
# python-impl: PyPy

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
[Unreleased]: https://github.com/althonos/pronto/compare/v2.4.5...HEAD
8+
[Unreleased]: https://github.com/althonos/pronto/compare/v2.4.6...HEAD
9+
10+
## [2.4.6] - 2022-06-18
11+
[2.4.6]: https://github.com/althonos/pronto/compare/v2.4.5...v2.4.6
12+
### Added
13+
- Setters for the `holds_over_chain` and `equivalent_to_chain` properties of `Relationship` objects.
14+
### Fixed
15+
- Serialization of `holds_over_chain` properties with `fastobo`-based serializers ([#175](https://github.com/althonos/pronto/issues/175)).
916

1017
## [2.4.5] - 2022-04-21
1118
[2.4.5]: https://github.com/althonos/pronto/compare/v2.4.4...v2.4.5

pronto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
__author__ = "Martin Larralde <martin.larralde@embl.de>"
6262
__license__ = "MIT"
63-
__version__ = "2.4.5"
63+
__version__ = "2.4.6"
6464

6565
# Update the docstring with a link to the right version of the documentation
6666
# instead of the latest.

0 commit comments

Comments
 (0)