Skip to content

Commit

Permalink
bump versions for alpha release (globus#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiGlobus authored May 3, 2023
1 parent ae7a197 commit 8cbed37
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 46 deletions.

This file was deleted.

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.0.1"
__version__ = "2.0.2a0"

# 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.20.0,<3",
"globus-sdk", # version will be bounded by `globus-compute-sdk`
"globus-compute-sdk>=2.0.1",
"globus-compute-sdk>=2.0.2a0",
"globus-compute-common==0.1.0",
# table printing used in list-endpoints
"texttable>=1.6.4,<2",
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/funcx_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.0.1"
__version__ = "2.0.2a0"

VERSION = __version__

Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-endpoint>=2.0.1",
"globus-compute-endpoint>=2.0.2a0",
]

version_ns = {}
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/funcx/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.0.1"
__version__ = "2.0.2a0"

DEPRECATION_FUNCX = """
The funcX SDK has been renamed to Globus Compute SDK and the new package is
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-sdk>=2.0.1",
"globus-compute-sdk>=2.0.2a0",
]


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.0.1"
__version__ = "2.0.2a0"


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

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

globus-compute-sdk & globus-compute-endpoint v2.0.2a0
-----------------------------------------------------

Bug Fixes
^^^^^^^^^

- Address a concurrent data structure modification error that resulted in
stalled processing and lost tasks

Changed
^^^^^^^

- The API ``https://api2.funcx.org/..`` URL has been updated to ``https://compute.api.globus.org/..``

.. _changelog-2.0.1:

globus-compute-sdk & globus-compute-endpoint v2.0.1
Expand Down
11 changes: 11 additions & 0 deletions docs/changelog_funcx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ New Functionality
- ``from funcx.sdk.client import FuncXClient`` and ``from funcx.sdk.executor import FuncXExecutor``
will both work if used in old scripts, in addition to ``from funcx import FuncXClient/FuncXExecutor``

Bug Fixes
^^^^^^^^^

- Address a concurrent data structure modification error that resulted in
stalled processing and lost tasks

Changed
^^^^^^^

- The API ``https://api2.funcx.org/..`` URL has been updated to ``https://compute.api.globus.org/..``

.. _changelog-2.0.1:

funcx & funcx-endpoint v2.0.1
Expand Down

0 comments on commit 8cbed37

Please sign in to comment.