diff --git a/CHANGES.rst b/CHANGES.rst index d34f56522..13b16c0b9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog ========= +-------------------- +3.23.2 (2025-04-22) +-------------------- +- Fixed bug in Python 3.8 due to incompatible type specification +- Fixed bug that caused omission of symlinks-to-directories during application version creation + -------------------- 3.23.1 (2025-04-18) -------------------- diff --git a/ebcli/__init__.py b/ebcli/__init__.py index ff60c4be5..4144cbbb1 100644 --- a/ebcli/__init__.py +++ b/ebcli/__init__.py @@ -11,4 +11,4 @@ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -__version__ = '3.23.1' +__version__ = '3.23.2'