-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare Release v1.1.0 #61
Merged
btschwertfeger
merged 53 commits into
master
from
58-create-a-documentation-for-the-package
Apr 8, 2023
Merged
Prepare Release v1.1.0 #61
btschwertfeger
merged 53 commits into
master
from
58-create-a-documentation-for-the-package
Apr 8, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
btschwertfeger
added
Documentation
Improvements or additions to documentation
enhancement
New feature or request
labels
Apr 2, 2023
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #61 +/- ##
==========================================
+ Coverage 85.95% 86.31% +0.35%
==========================================
Files 17 17
Lines 1339 1337 -2
==========================================
+ Hits 1151 1154 +3
+ Misses 188 183 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
|
btschwertfeger
changed the title
Create a documentation portal for the package
Create a documentation portal for the package and bug fixes
Apr 4, 2023
btschwertfeger
changed the title
Create a documentation portal for the package and bug fixes
Prepare Release v1.1.0
Apr 4, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Extended all doc strings by adding descriptions and examples. Moved misplaced methods from the in the Futures clients (see Breaking Changes section below). Added parameters the Futures
create_order
method. Changed the default value of the Futures Dead Man's Switch from 60 to 0. Moved the KrakenException class. Created a documentation.Breaking Changes
KrakenExceptions
-class was renamed toKrakenException
and moved fromkraken.exceptions.exceptions
tokraken.exceptions
Closes Movekraken.exceptions.exceptions.KrakenExceptions
tokraken.exceptions.KrakenException
#66get_execution_events
,get_order_events
, andget_trigger_events
moved fromkraken.futures.Market
tokraken.futures.User
since this are user-specific endpoints. In addition, the bug from Cannot access private historical events of the Futures Market client #62 was fixed by changingpost_params
toquery_params
withinkraken.futures.User._get_historical_events
function, since this is only a GET request, instead of a POST request. Closes Cannot access private historical events of the Futures Market client #62kraken.futures.Trade.death_mans_switch
to zero (which resets the timeout). Closes Change the default value of the futures dead mans switch to zero #63More Changes, Features and Bug Fixes
trailingStopDeviationUnit
andtrailingStopMaxDeviation
parameters to thecreate_order
method of the Futures Trade client. Closes AddtrailingStopDeviationUnit
andtrailingStopMaxDeviation
to the Futurescreate_order
method #64