Skip to content

Commit

Permalink
release libmamba 1.5.9, libmambapy 1.5.9, mamba 1.5.9, micromamba 1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Aug 30, 2024
1 parent 53525bd commit 25cdc05
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2024.08.31
==========

Releases: libmamba 1.5.9, libmambapy 1.5.9, mamba 1.5.9, micromamba 1.5.9

Bug fixes:

- [libmamba] backport of #3424: Execute remove action before install actions by @JohaMabille
in https://github.com/mamba-org/mamba/pull/3425/files
- [mamba] Fix Conda nightly tests by @Hind-M in https://github.com/mamba-org/mamba/pull/3420

CI

- [mamba, micromamba] Fix tests by @Hind-M in https://github.com/mamba-org/mamba/pull/3347/files


2024.03.25
==========

Expand Down
7 changes: 7 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
libmamba 1.5.9 (August 31, 2024)
================================

Bug fixes:

- backport of #3424: Execute remove action before install actions by @JohaMabille

libmamba 1.5.8 (March 25, 2024)
===============================

Expand Down
5 changes: 3 additions & 2 deletions 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 8
#define LIBMAMBA_VERSION_PATCH 9

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand All @@ -26,7 +26,8 @@
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
#define LIBMAMBA_VERSION_STRING \
__LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MAJOR) \
"." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MINOR) "." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_PATCH)
"." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MINOR) "." __LIBMAMBA_STRINGIZE( \
LIBMAMBA_VERSION_PATCH)

namespace mamba
{
Expand Down
4 changes: 4 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
libmambapy 1.5.9 (August 31, 2024)
==================================


libmambapy 1.5.8 (March 25, 2024)
=================================

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, 8)
version_info = (1, 5, 9)
__version__ = ".".join(map(str, version_info))
12 changes: 12 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
mamba 1.5.9 (August 31, 2024)
=============================


in https://github.com/mamba-org/mamba/pull/3425/files

- Fix Conda nightly tests by @Hind-M in https://github.com/mamba-org/mamba/pull/3420

CI

- Fix tests by @Hind-M in https://github.com/mamba-org/mamba/pull/3347/files

mamba 1.5.8 (March 25, 2024)
============================

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, 8)
version_info = (1, 5, 9)
__version__ = ".".join(map(str, version_info))
8 changes: 8 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
micromamba 1.5.9 (August 31, 2024)
==================================


CI

- Fix tests by @Hind-M in https://github.com/mamba-org/mamba/pull/3347/files

micromamba 1.5.8 (March 25, 2024)
=================================

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 8
#define UMAMBA_VERSION_PATCH 9

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 25cdc05

Please sign in to comment.