Skip to content

Commit 08e76ac

Browse files
committed
Unify changelog style
1 parent 88cb4a0 commit 08e76ac

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

.flake8

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ filename =
44
./scripts/*.py,
55
./src/*.py,
66
./tests/*.py
7-
# Todo: remove "src/apify_client/consts.py: F401" once consts are removed from the package
87
per-file-ignores =
98
docs/*: D
109
scripts/*: D
1110
tests/*: D
12-
src/apify_client/consts.py: F401
1311

1412
# Google docstring convention + D204 & D401
1513
docstring-convention = all

CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
Changelog
22
=========
33

4-
[1.4.1](../../releases/tag/v1.4.1) - Unreleased
4+
[1.4.1](../../releases/tag/v1.4.1) - 2023-09-06
55
-----------------------------------------------
66

77
### Added
88

9-
- Add StoreCollectionClient for listing Actors in Apify store
10-
- support for specifying the `max_items` parameter for pay-per result Actors and their runs
9+
- added `StoreCollectionClient` for listing Actors in the Apify Store
10+
- added support for specifying the `max_items` parameter for pay-per result Actors and their runs
1111

1212
### Internal changes
1313

14-
- Improved logging of HTTP requests
15-
- Removed `pytest-randomly` Pytest plugin
14+
- improved logging of HTTP requests
15+
- removed `pytest-randomly` Pytest plugin
1616

17-
[1.4.0](../../releases/tag/v1.4.0) - 2023-08-22
17+
[1.4.0](../../releases/tag/v1.4.0) - 2023-08-23
1818
-----------------------------------------------
1919

2020
### Added
2121

22-
- Add Actor reboot method to the `RunClient`
22+
- added `RunClient.reboot` method to reboot Actor runs
2323

2424
### Internal changes
2525

26-
- Code simplification via `flake8-simplify`
27-
- Unify indentation in configuration files
26+
- simplified code via `flake8-simplify`
27+
- unified indentation in configuration files
2828

2929
[1.3.1](../../releases/tag/v1.3.1) - 2023-07-28
3030
-----------------------------------------------
3131

3232
### Internal changes
3333

34-
- Import general constants and utilities from apify-shared library
34+
- started importing general constants and utilities from the `apify-shared` library
3535

3636
[1.3.0](../../releases/tag/v1.3.0) - 2023-07-24
3737
-----------------------------------------------
3838

3939
### Added
4040

41-
- Added list_and_lock_head, delete_request_lock, prolong_request_lock methods for the RequestQueueClient(Async) classes
42-
- Added batch_add_requests, batch_delete_requests, list_requests methods for the RequestQueueClient(Async) classes
41+
- added `list_and_lock_head`, `delete_request_lock`, `prolong_request_lock` methods to `RequestQueueClient`
42+
- added `batch_add_requests`, `batch_delete_requests`, `list_requests` methods `RequestQueueClient`
4343

4444
[1.2.2](../../releases/tag/v1.2.2) - 2023-05-31
4545
-----------------------------------------------
4646

4747
### Fixed
4848

49-
- Fixed encoding webhook lists in request parameters
49+
- fixed encoding webhook lists in request parameters
5050

5151
[1.2.1](../../releases/tag/v1.2.1) - 2023-05-23
5252
-----------------------------------------------

src/apify_client/consts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import warnings
22
from typing import Any
33

4-
from apify_shared.consts import ActorJobStatus as _ActorJobStatus
5-
from apify_shared.consts import ActorSourceType as _ActorSourceType
6-
from apify_shared.consts import MetaOrigin as _MetaOrigin
7-
from apify_shared.consts import WebhookEventType as _WebhookEventType
4+
from apify_shared.consts import ActorJobStatus as _ActorJobStatus # noqa: F401
5+
from apify_shared.consts import ActorSourceType as _ActorSourceType # noqa: F401
6+
from apify_shared.consts import MetaOrigin as _MetaOrigin # noqa: F401
7+
from apify_shared.consts import WebhookEventType as _WebhookEventType # noqa: F401
88

99
DEPRECATED_NAMES = [
1010
'ActorJobStatus',

0 commit comments

Comments
 (0)