Skip to content

Commit 992388e

Browse files
committed
chore(master): merge maint-0.9 (reanahub#737)
chore(maint-0.9): release 0.9.4 (reanahub#696) build(python): bump shared REANA packages as of 2024-11-28 (reanahub#736) build(python): add support for Python 3.13 (reanahub#736) docs(cli): fix `open` command documentation typo (reanahub#728) ci(actions): pin setuptools 70 (reanahub#728) Note: The merge commit removes the changes related to pinning `setuptools` to version 70, because this was only necessary for the `maint-0.9` branches, as well as other 0.9.4 release-related changes.
2 parents 6fc567a + 6766412 commit 992388e

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.3"
2+
".": "0.9.4"
33
}

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.9.4](https://github.com/reanahub/reana-client/compare/0.9.3...0.9.4) (2024-11-29)
4+
5+
6+
### Build
7+
8+
* **docker:** create `reana-client` container image ([#710](https://github.com/reanahub/reana-client/issues/710)) ([2c99c5d](https://github.com/reanahub/reana-client/commit/2c99c5d1bd36e4303885875375085f7d714e8732)), closes [#709](https://github.com/reanahub/reana-client/issues/709)
9+
* **python:** add support for Python 3.13 ([#736](https://github.com/reanahub/reana-client/issues/736)) ([fd9b944](https://github.com/reanahub/reana-client/commit/fd9b9446d58f21cc6e57b343874d55433532c959))
10+
* **python:** bump shared REANA packages as of 2024-11-28 ([#736](https://github.com/reanahub/reana-client/issues/736)) ([778df03](https://github.com/reanahub/reana-client/commit/778df037dbeb1340478060e7f913dfff7c0235e5))
11+
12+
13+
### Continuous integration
14+
15+
* **actions:** pin setuptools 70 ([#728](https://github.com/reanahub/reana-client/issues/728)) ([0a4bcc7](https://github.com/reanahub/reana-client/commit/0a4bcc79af33dd00a6a03216be32d10000bb432b))
16+
17+
18+
### Documentation
19+
20+
* **cli:** fix `open` command documentation typo ([#728](https://github.com/reanahub/reana-client/issues/728)) ([c822dd6](https://github.com/reanahub/reana-client/commit/c822dd6570d5474e535be83d0ee4beb44ecee85b))
21+
322
## [0.9.3](https://github.com/reanahub/reana-client/compare/0.9.2...0.9.3) (2024-03-13)
423

524

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 CERN.
3+
Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 CERN.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

reana_client/api/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of REANA.
4-
# Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023 CERN.
4+
# Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 CERN.
55
#
66
# REANA is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of REANA.
4-
# Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 CERN.
4+
# Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 CERN.
55
#
66
# REANA is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.
@@ -27,7 +27,7 @@
2727
],
2828
"tests": [
2929
"pytest-reana>=0.95.0a4,<0.96.0",
30-
"reana-commons[kubernetes]>=0.95.0a5,<0.96.0",
30+
"reana-commons[kubernetes]>=0.95.0a6,<0.96.0",
3131
],
3232
}
3333

@@ -41,7 +41,7 @@
4141
"click>=7",
4242
"pathspec==0.9.0",
4343
"jsonpointer>=2.0",
44-
"reana-commons[yadage,snakemake,cwl]>=0.95.0a5,<0.96.0",
44+
"reana-commons[yadage,snakemake,cwl]>=0.95.0a6,<0.96.0",
4545
"tablib>=0.12.1,<0.13",
4646
"werkzeug>=0.14.1 ; python_version<'3.10'",
4747
"werkzeug>=0.15.0 ; python_version>='3.10'",

0 commit comments

Comments
 (0)