Skip to content

Commit b2a39e4

Browse files
committed
Release 1.0.0
1 parent 9c89bab commit b2a39e4

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,28 @@ app_information = am.application_information('application_id')
8686

8787
### Changelog
8888

89+
1.0.0 Release
90+
- Major cleanup of API.
91+
- Address/port parameters have been replaced with complete
92+
endpoints (includes scheme [e.g., http or https]).
93+
- ResourceManager has been updated to take a list of endpoints for
94+
improved HA support.
95+
- ResourceManager, ApplicationMaster, HistoryServer and NodeManager
96+
have been updated with methods corresponding to the latest REST API.
97+
- pytest support on Windows has been provided.
98+
- Documentation has been updated.
99+
100+
**NOTE:** Applications using APIs relative to releases prior to 1.0 should
101+
pin their dependency on yarn-api-client to _less than_ 1.0 and are encouraged
102+
to update to 1.0 as soon as possible.
103+
104+
0.3.7 Release
105+
- Honor configured HTTP Policy when no address is provided - enabling
106+
using of HTTPS in these cases.
107+
89108
0.3.6 Release
90-
- Extend ResourceManager to allow appli
91-
determine resource availability prior to submission.
109+
- Extend ResourceManager to allow applications to determine
110+
resource availability prior to submission.
92111

93112
0.3.5 Release
94113
- Hotfix release to fix internal signature mismatch

yarn_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '0.3.8.dev'
2+
__version__ = '1.0.0'
33
__all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager', 'ResourceManager']
44

55
from .application_master import ApplicationMaster

0 commit comments

Comments
 (0)