Skip to content

Commit 96f272a

Browse files
committed
release: prepare for version 2.5.0
1 parent 7a78cee commit 96f272a

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog
22

3+
## v2.5.0 (2025-02-13)
4+
5+
### Enhancements
6+
7+
- Added `getArchivefileUrl` and `getArchivefileUrls` to only return the download links of
8+
the requested archive files.
9+
([#56](https://github.com/OceanNetworksCanada/api-python-client/issues/56))
10+
11+
This is useful because users can use them in their favorite download manager.
12+
Check the [Code Example](https://oceannetworkscanada.github.io/api-python-client/Code_Examples/Download_Archived_Files.html#download-archived-files-using-a-download-manager)
13+
for more information.
14+
15+
- Added warning messages if the response has a "messages" key with a non-empty list value.
16+
([#58](https://github.com/OceanNetworksCanada/api-python-client/pull/58))
17+
18+
This feature can be turned off by using `onc = ONC(token=TOKEN, showWarning=False)`.
19+
20+
### Fixes
21+
22+
- Reverted back the incremental downloading files because it might generate invalid files
23+
with partial file size (before it was zero file size).
24+
([#54](https://github.com/OceanNetworksCanada/api-python-client/issues/54))
25+
26+
### Contributors
27+
28+
- [Kan Fu](https://github.com/kan-fu)
29+
30+
### Reviewers panel
31+
32+
- [Angela Schlesinger](https://github.com/aschlesin)
33+
- [Eli Ferguson](https://github.com/eliferguson)
34+
- [Spencer Plovie](https://github.com/spencerwplovie)
35+
336
## v2.4.1 (2024-09-24)
437

538
### Fixes

LICENSE.txt

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

176176
END OF TERMS AND CONDITIONS
177177

178-
Copyright 2019-2024 Ocean Networks Canada
178+
Copyright 2019-2025 Ocean Networks Canada
179179

180180
Licensed under the Apache License, Version 2.0 (the "License");
181181
you may not use this file except in compliance with the License.

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = "onc"
10-
copyright = "2024, ONC Data Team"
10+
copyright = "2025, ONC Data Team"
1111
author = "ONC Data Team"
12-
release = "2.4.1"
12+
release = "2.5.0"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "onc"
7-
version = "2.4.1"
7+
version = "2.5.0"
88
description = "Oceans 3.0 API Python Client Library"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)