Skip to content

Commit 5ef0e7c

Browse files
committed
Release v1.0.2 for packaging
Updates some docs and bumps the version number.
1 parent b69e142 commit 5ef0e7c

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

docs/changelog.rst

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44
1.0
55
---
66

7+
Version 1.0.2 (2024-06-29)
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
General improvements and minor correctness fixes.
11+
12+
* Fixed :issue:`28`: Add ability to optionally disable account data synchronization on startup. If you are an advanced user, you may not need all your data synchronized on startup (which can slow down the initial connections due to the multiple sequential request loading) or you may want to control when the account data is loaded on your own schedule.
13+
* Fixed :issue:`33`: Improved reliability of L2 depth of market reporting
14+
* Fixed :issue:`10` and :issue:`11`: Fixed links in documentation
15+
* Fixed :issue:`16`: Fixed documentation typo
16+
* Fixed :issue:`32`: Use delayed data instead of denied data in example notebooks
17+
* Improved error logging if a wrapped method fails
18+
* Removed a potential exception when shutting down the event loop from within a larger system
19+
720
Version 1.0.1 (2024-03-20)
821
^^^^^^^^^^^^^^^^^^^^^^^^^^
922

ib_async/ib.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ def connect(
359359
fetchFields: By default, all account data is loaded and cached
360360
when a new connection is made. You can optionally disable all
361361
or some of the account attribute fetching during a connection
362-
using the StartupFetch field flags.
362+
using the StartupFetch field flags. See ``StartupFetch`` in ``ib.py``
363+
for member details. There is also StartupFetchNONE and StartupFetchALL
364+
as shorthand. Individual flag field members can be added or removed
365+
to the ``fetchFields`` parameter as needed.
363366
"""
364367
return self._run(
365368
self.connectAsync(

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ib_async"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Python sync/async framework for Interactive Brokers API"
55
authors = ["Ewald de Wit"]
66
maintainers = ["Matt Stancliff <[email protected]>"]

0 commit comments

Comments
 (0)