Skip to content

Commit f2c52f5

Browse files
committed
Prepare release 23.10.0
1 parent f48bf42 commit f2c52f5

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

docs/release-notes.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,9 @@ Release notes
3232
Stability, Maintainability, and Testing
3333
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3434
35-
vversion
35+
v23.10.0
3636
--------
3737

38-
Security
39-
~~~~~~~~
40-
4138
Features
4239
~~~~~~~~
4340

@@ -59,9 +56,6 @@ Bugfixes
5956
* Preserve ``meta`` in ``Dataset.replace`` and allow replacing it.
6057
This also affects ``Dataset.replace_files`` and ``Client.download_files``.
6158

62-
Documentation
63-
~~~~~~~~~~~~~
64-
6559
Deprecations
6660
~~~~~~~~~~~~
6761

src/scitacean/_internal/pydantic_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def is_pydantic_v1() -> bool:
1313

1414
warnings.warn(
1515
"Support for Pydantic v1 is deprecated in Scitacean"
16-
"RELEASE_PLACEHOLDER and will be removed in Scitacean v23.12.0."
16+
"23.10.0 and will be removed in Scitacean v23.12.0."
1717
"If you cannot update your Pydantic version, please comment in this issue:"
1818
" https://github.com/SciCatProject/scitacean/issues/158",
1919
VisibleDeprecationWarning,

src/scitacean/dataset.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def keys(self) -> Iterable[str]:
520520
and other fields that are not ``None``.
521521
522522
523-
.. versionadded:: RELEASE_PLACEHOLDER
523+
.. versionadded:: 23.10.0
524524
"""
525525
from itertools import chain
526526

@@ -543,7 +543,7 @@ def values(self) -> Iterable[Any]:
543543
and other fields that are not ``None``.
544544
545545
546-
.. versionadded:: RELEASE_PLACEHOLDER
546+
.. versionadded:: 23.10.0
547547
"""
548548
return (getattr(self, field_name) for field_name in self.keys())
549549

@@ -558,7 +558,7 @@ def items(self) -> Iterable[tuple[str, Any]]:
558558
and other fields that are not ``None``.
559559
560560
561-
.. versionadded:: RELEASE_PLACEHOLDER
561+
.. versionadded:: 23.10.0
562562
"""
563563
return ((key, getattr(self, key)) for key in self.keys())
564564

@@ -601,7 +601,7 @@ def __getitem__(self, field_name: str) -> Any:
601601
:class:`KeyError` if ``field_name`` does not mach any names of fields.
602602
603603
604-
.. versionadded:: RELEASE_PLACEHOLDER
604+
.. versionadded:: 23.10.0
605605
"""
606606
self._validate_field_name(field_name)
607607
return getattr(self, field_name)
@@ -625,7 +625,7 @@ def __setitem__(self, field_name: str, field_value: Any) -> None:
625625
:class:`KeyError` if ``field_name`` does not mach any names of fields.
626626
627627
628-
.. versionadded:: RELEASE_PLACEHOLDER
628+
.. versionadded:: 23.10.0
629629
"""
630630
self._validate_field_name(field_name)
631631
setattr(self, field_name, field_value)

src/scitacean/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def from_remote(
166166
A new file object.
167167
168168
169-
.. versionadded:: RELEASE_PLACEHOLDER
169+
.. versionadded:: 23.10.0
170170
"""
171171
if checksum is not None and checksum_algorithm is None:
172172
raise TypeError(

0 commit comments

Comments
 (0)