Skip to content

Commit

Permalink
release libmamba 1.4.6, libmambapy 1.4.6, mamba 1.4.6, micromamba 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Jun 30, 2023
1 parent d8c1ef1 commit fa3f7a2
Show file tree
Hide file tree
Showing 9 changed files with 65 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
2023.06.30
==========

Releases: libmamba 1.4.6, libmambapy 1.4.6, mamba 1.4.6, micromamba 1.4.6

Enhancements:

- [libmamba] Channels refactoring/cleaning by @Hind-M in https://github.com/mamba-org/mamba/pull/2537
- [libmamba] Troubleshooting update by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2635
- [libmamba] Direcly call uname for linux detection by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2624

Bug fixes:

- [libmamba] Fix build with older Clang by @pavelzw in https://github.com/mamba-org/mamba/pull/2625
- [libmambapy, mamba] Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632
- [libmamba] Add missing noarch in PackageInfo serialization by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2641
- [libmamba] Allow --force-reinstall on uninstalled specs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2636

CI fixes and doc:

- [micromamba] Document micromamba support for conda-lock spec files by @mfisher87 in https://github.com/mamba-org/mamba/pull/2621

2023.06.27
==========

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.4.6 (June 30, 2023)
==============================

Enhancements:

- Channels refactoring/cleaning by @Hind-M in https://github.com/mamba-org/mamba/pull/2537
- Troubleshooting update by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2635
- Direcly call uname for linux detection by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2624

Bug fixes:

- Fix build with older Clang by @pavelzw in https://github.com/mamba-org/mamba/pull/2625
- Add missing noarch in PackageInfo serialization by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2641
- Allow --force-reinstall on uninstalled specs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2636

libmamba 1.4.5 (June 27, 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 4
#define LIBMAMBA_VERSION_PATCH 5
#define LIBMAMBA_VERSION_PATCH 6

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


Bug fixes:

- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632

libmambapy 1.4.5 (June 27, 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, 4, 5)
version_info = (1, 4, 6)
__version__ = ".".join(map(str, version_info))
8 changes: 8 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
mamba 1.4.6 (June 30, 2023)
===========================


Bug fixes:

- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632

mamba 1.4.5 (June 27, 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, 4, 5)
version_info = (1, 4, 6)
__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.4.6 (June 30, 2023)
================================


CI fixes and doc:

- Document micromamba support for conda-lock spec files by @mfisher87 in https://github.com/mamba-org/mamba/pull/2621

micromamba 1.4.5 (June 27, 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 4
#define UMAMBA_VERSION_PATCH 5
#define UMAMBA_VERSION_PATCH 6

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit fa3f7a2

Please sign in to comment.