Skip to content

Commit

Permalink
release libmamba 1.5.3, libmambapy 1.5.3, mamba 1.5.3, micromamba 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Oct 30, 2023
1 parent e6ea6ee commit 91c41db
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
2023.10.30
==========

Releases: libmamba 1.5.3, libmambapy 1.5.3, mamba 1.5.3, micromamba 1.5.3

Enhancement:

- [libmamba] Backport #2927: Allow defaults::* spec by @isuruf in https://github.com/mamba-org/mamba/pull/2936
- [libmamba] Backport #2921: return architecture levels for micromamba by @isuruf in https://github.com/mamba-org/mamba/pull/2936

Bug fixes:

- [libmamba] Backport #2926: Fix channels with slashes regression by @isuruf in https://github.com/mamba-org/mamba/pull/2936
- [libmambapy] Fix ctrl-c handling issues in libmambapy by @jaimergp in https://github.com/mamba-org/mamba/pull/2946
- [libmamba, libmambapy, mamba] Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951

CI fixes and doc:

2023.10.16
==========

Expand Down
15 changes: 15 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
libmamba 1.5.3 (October 30, 2023)
=================================

Enhancement:

- Backport #2927: Allow defaults::* spec by @isuruf in https://github.com/mamba-org/mamba/pull/2936
- Backport #2921: return architecture levels for micromamba by @isuruf in https://github.com/mamba-org/mamba/pull/2936

Bug fixes:

- Backport #2926: Fix channels with slashes regression by @isuruf in https://github.com/mamba-org/mamba/pull/2936
- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951

CI fixes and doc:

libmamba 1.5.2 (October 16, 2023)
=================================

Expand Down
2 changes: 1 addition & 1 deletion libmamba/include/mamba/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#define LIBMAMBA_VERSION_MAJOR 1
#define LIBMAMBA_VERSION_MINOR 5
#define LIBMAMBA_VERSION_PATCH 2
#define LIBMAMBA_VERSION_PATCH 3

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
11 changes: 11 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
libmambapy 1.5.3 (October 30, 2023)
===================================


Bug fixes:

- Fix ctrl-c handling issues in libmambapy by @jaimergp in https://github.com/mamba-org/mamba/pull/2946
- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951

CI fixes and doc:

libmambapy 1.5.2 (October 16, 2023)
===================================

Expand Down
2 changes: 1 addition & 1 deletion libmambapy/libmambapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 5, 2)
version_info = (1, 5, 3)
__version__ = ".".join(map(str, version_info))
10 changes: 10 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
mamba 1.5.3 (October 30, 2023)
==============================


Bug fixes:

- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951

CI fixes and doc:

mamba 1.5.2 (October 16, 2023)
==============================

Expand Down
2 changes: 1 addition & 1 deletion mamba/mamba/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 5, 2)
version_info = (1, 5, 3)
__version__ = ".".join(map(str, version_info))
6 changes: 6 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
micromamba 1.5.3 (October 30, 2023)
===================================


CI fixes and doc:

micromamba 1.5.2 (October 16, 2023)
===================================

Expand Down
2 changes: 1 addition & 1 deletion micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#define UMAMBA_VERSION_MAJOR 1
#define UMAMBA_VERSION_MINOR 5
#define UMAMBA_VERSION_PATCH 2
#define UMAMBA_VERSION_PATCH 3

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 91c41db

Please sign in to comment.