Skip to content

Commit

Permalink
Bump versions and changelog for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbryan-globus committed Jul 11, 2024
1 parent 1cc3a1a commit da2e045
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 26 deletions.

This file was deleted.

7 changes: 0 additions & 7 deletions changelog.d/20240627_181028_chris_mep_config_user_runtime.rst

This file was deleted.

11 changes: 0 additions & 11 deletions changelog.d/20240702_175644_30907815+rjmello_exec_cmd_sc_34376.rst

This file was deleted.

2 changes: 1 addition & 1 deletion compute_endpoint/globus_compute_endpoint/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.23.0"
__version__ = "2.24.0"

# TODO: remove after a `globus-compute-sdk` release
# this is needed because it's imported by `globus-compute-sdk` to do the version check
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
REQUIRES = [
"requests>=2.31.0,<3",
"globus-sdk", # version will be bounded by `globus-compute-sdk`
"globus-compute-sdk==2.23.0",
"globus-compute-sdk==2.24.0",
"globus-compute-common==0.4.1",
"globus-identity-mapping==0.3.0",
# table printing used in list-endpoints
Expand Down
2 changes: 1 addition & 1 deletion compute_sdk/globus_compute_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.23.0"
__version__ = "2.24.0"


def compare_versions(
Expand Down
28 changes: 28 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@ Changelog

.. scriv-insert-here
.. _changelog-2.24.0a0:

globus-compute-sdk & globus-compute-endpoint v2.24.0
------------------------------------------------------

New Functionality
^^^^^^^^^^^^^^^^^

- The engine that renders user endpoint config files now receives information about
the runtime environment used to submit tasks, such as Python environment and Globus
Compute SDK version, via the ``user_runtime`` variable. For a complete list of the
fields that are sent, `reference the documentation on batch.UserRuntime. <https://globus-compute.readthedocs.io/en/latest/reference/client.html#globus_compute_sdk.sdk.batch.UserRuntime>`_

- Added the ``globus-compute-endpoint python-exec`` command to run Python modules as scripts
from the Globus Compute endpoint CLI. The primary use case is to launch Parsl processes
without requiring additional commands in the user's ``PATH`` (e.g., ``process_worker_pool.py``).

Changed
~~~~~~~

- Worker nodes no longer need to resolve the ``process_worker_pool.py`` command.

Changed
^^^^^^^

- Unless manually specified, all ``Executor`` objects in the same process will
share the same task group ID.

.. _changelog-2.23.0:

globus-compute-sdk & globus-compute-endpoint v2.23.0
Expand Down

0 comments on commit da2e045

Please sign in to comment.