Skip to content

Commit

Permalink
bump change to 0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Oct 23, 2023
1 parent e32a546 commit 3a0814c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.13
0.2.0
2 changes: 2 additions & 0 deletions clients/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and **Merged pull requests**. Critical items to know are:
The versions coincide with releases on pip. Only major versions will be released as tags on Github.

## [0.0.x](https://github.com/flux-framework/flux-restful-api/tree/main) (0.0.x)
- Update to use newer versions of fastapi, etc (0.1.15)
- option_flags is a flat string list of values
- Expose host to environment and bug fix for logs (0.1.14)
- Ensure we update flux environment for user (0.1.13)
- Add better multi-user mode - running jobs on behalf of user (0.1.12)
Expand Down
2 changes: 1 addition & 1 deletion clients/python/flux_restful_client/main/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def submit(self, command, **kwargs):
"envars",
]:
# Assume if it's provided, period, the user wants to set it!
if optional == "option_flags":
if optional == "option_flags" and optional in kwargs:
kwargs[optional] = utils.flatten_list(kwargs[optional])
if optional in kwargs:
data[optional] = kwargs[optional]
Expand Down
2 changes: 1 addition & 1 deletion clients/python/flux_restful_client/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.14"
__version__ = "0.2.0"
AUTHOR = "Vanessa Sochat"
EMAIL = "[email protected]"
NAME = "flux-restful-client"
Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def get_reqs(lookup=None, key="INSTALL_REQUIRES"):
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 3a0814c

Please sign in to comment.