Skip to content

Commit 75b0cb6

Browse files
ConchylicultorThe dataclass_array Authors
authored andcommitted
Release v1.4.2
PiperOrigin-RevId: 546800315
1 parent f66fd91 commit 75b0cb6

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
2323

2424
## [Unreleased]
2525

26-
## [1.4.3] - 2023-07-07
27-
28-
* Add `dca.concat` method in addition to `dca.stack`.
29-
30-
## [1.4.2] - 2023-06-29
26+
## [1.4.2] - 2023-07-10
3127

28+
* Add `dca.concat` method in addition to `dca.stack`.
3229
* Now require Python 3.9 (drop 3.8 support)
3330

3431
## [1.4.1] - 2023-03-20
@@ -73,8 +70,7 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
7370

7471
* Initial release
7572

76-
[Unreleased]: https://github.com/google-research/dataclass_array/compare/v1.4.3...HEAD
77-
[1.4.3]: https://github.com/google-research/dataclass_array/compare/v1.4.2...v1.4.3
73+
[Unreleased]: https://github.com/google-research/dataclass_array/compare/v1.4.2...HEAD
7874
[1.4.2]: https://github.com/google-research/dataclass_array/compare/v1.4.1...v1.4.2
7975
[1.4.1]: https://github.com/google-research/dataclass_array/compare/v1.4.0...v1.4.1
8076
[1.4.0]: https://github.com/google-research/dataclass_array/compare/v1.3.0...v1.4.0

dataclass_array/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import sys
2323

24-
# pylint: disable=g-import-not-at-top,g-bad-import-order
24+
# pylint: disable=g-import-not-at-top,g-bad-import-order,g-importing-member
2525

2626
pytest = sys.modules.get('pytest')
2727
if pytest:
@@ -44,6 +44,6 @@
4444

4545
# A new PyPI release will be pushed everytime `__version__` is increased
4646
# When changing this, also update the CHANGELOG.md
47-
__version__ = '1.4.1'
47+
__version__ = '1.4.2'
4848

4949
del sys, pytest

0 commit comments

Comments
 (0)