Skip to content

Commit

Permalink
Bump versions and changelog for bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
khk-globus committed Aug 15, 2023
1 parent 10b2965 commit 82ec69c
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 12 deletions.
5 changes: 0 additions & 5 deletions changelog.d/20230814_175226_30907815+rjmello_HEAD.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.3.0"
__version__ = "2.3.1"

# 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.3.0",
"globus-compute-sdk==2.3.1",
"globus-compute-common==0.2.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.3.0"
__version__ = "2.3.1"

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.3.0",
"globus-compute-endpoint==2.3.1",
]

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.3.0"
__version__ = "2.3.1"

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.3.0",
"globus-compute-sdk==2.3.1",
]


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.3.0"
__version__ = "2.3.1"


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

.. scriv-insert-here
.. _changelog-2.3.1:

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

Bug Fixes
^^^^^^^^^

- Fixed ``Executor.reload_tasks``, which was broken in v2.3.0 after changes
related to using the new upstream submission route.

.. _changelog-2.3.0:

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

0 comments on commit 82ec69c

Please sign in to comment.