Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-bates committed Sep 26, 2019
1 parent 9c89bab commit b2a39e4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,28 @@ app_information = am.application_information('application_id')

### Changelog

1.0.0 Release
- Major cleanup of API.
- Address/port parameters have been replaced with complete
endpoints (includes scheme [e.g., http or https]).
- ResourceManager has been updated to take a list of endpoints for
improved HA support.
- ResourceManager, ApplicationMaster, HistoryServer and NodeManager
have been updated with methods corresponding to the latest REST API.
- pytest support on Windows has been provided.
- Documentation has been updated.

**NOTE:** Applications using APIs relative to releases prior to 1.0 should
pin their dependency on yarn-api-client to _less than_ 1.0 and are encouraged
to update to 1.0 as soon as possible.

0.3.7 Release
- Honor configured HTTP Policy when no address is provided - enabling
using of HTTPS in these cases.

0.3.6 Release
- Extend ResourceManager to allow appli
determine resource availability prior to submission.
- Extend ResourceManager to allow applications to determine
resource availability prior to submission.

0.3.5 Release
- Hotfix release to fix internal signature mismatch
Expand Down
2 changes: 1 addition & 1 deletion yarn_api_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '0.3.8.dev'
__version__ = '1.0.0'
__all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager', 'ResourceManager']

from .application_master import ApplicationMaster
Expand Down

0 comments on commit b2a39e4

Please sign in to comment.