Skip to content

Commit

Permalink
release libmamba 1.5.0, libmambapy 1.5.0, mamba 1.5.0, micromamba 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Aug 24, 2023
1 parent ae2f3e8 commit 795734f
Show file tree
Hide file tree
Showing 9 changed files with 162 additions and 6 deletions.
55 changes: 55 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
2023.08.23
==========

Releases: libmamba 1.5.0, libmambapy 1.5.0, mamba 1.5.0, micromamba 1.5.0

Enhancements:

- [libmamba] All headers at the top by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2658
- [libmamba] Add boolean expression tree by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2591
- [libmamba] Add VersionSpec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2502
- [micromamba] Refactor test_repoquery to use new fixtures by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2691
- [libmamba] Use xdg schemas for config saving/reading (minified) by @danpf in https://github.com/mamba-org/mamba/pull/2714
- [micromamba] Remove warnings from test_activation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2727
- [micromamba] Refactor test_shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2726
- [libmamba] specs platform by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2729
- [libmamba] Safe Curl opt in url.cpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2734
- [libmamba] Add win-arm64 support by @isuruf in https://github.com/mamba-org/mamba/pull/2745
- [libmamba] Move util_string to utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2739
- [libmamba] Remove get_clean_dirs() by @jonashaag in https://github.com/mamba-org/mamba/pull/2748
- [micromamba] Fix and improve static builds by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2755
- [all] Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759
- [libmamba, micromamba] Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744
- [all] Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760
- [libmamba] New apis for downloading by @JohanMabille in https://github.com/mamba-org/mamba/pull/2695

Bug fixes:

- [libmamba] Respect subdir in match spec by @ThomasBlauthQC in https://github.com/mamba-org/mamba/pull/2300
- [libmamba] Fixed move constructor in CURLHandle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2710
- [micromamba] Fix wrong activated PATH in micromamba shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2722
- [mamba] Fix Repo missing url by @Hind-M in https://github.com/mamba-org/mamba/pull/2723
- [mamba] Try Revert "Fix Repo missing url" by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2730
- [mamba] fix subcommands handling in recent versions of conda by @jaimergp in https://github.com/mamba-org/mamba/pull/2732
- [libmamba] Remove created prefix if aborted with --platform by @Hind-M in https://github.com/mamba-org/mamba/pull/2738
- [libmamba] Add missing newline in legacy errors by @jaimergp in https://github.com/mamba-org/mamba/pull/2743
- [mamba] Try fix Missing Url error by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2731
- [libmamba] fix: added missing hook_preamble() for powershell hook by @chawyehsu in https://github.com/mamba-org/mamba/pull/2761
- [micromamba] Fix config list sources by @Hind-M in https://github.com/mamba-org/mamba/pull/2756
- [libmamba] Fix fish completion by @soraxas in https://github.com/mamba-org/mamba/pull/2769
- [libmamba, micromamba] Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749
- [micromamba] Strong pin in test by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2774
- [mamba] fix: only reactivate current environment by @chawyehsu in https://github.com/mamba-org/mamba/pull/2763
- [micromamba] Revert failing test by @jonashaag in https://github.com/mamba-org/mamba/pull/2777

CI fixes and doc:

- [mamba, micromamba] Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675
- [all] Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- [mamba] Put more "not recommended" warnings in the installation instructions by @jonashaag in https://github.com/mamba-org/mamba/pull/2711
- [micromamba] Add command to docs for completeness by @danpf in https://github.com/mamba-org/mamba/pull/2717
- [micromamba] fix: Correct a command in installation.rst by @wy-luke in https://github.com/mamba-org/mamba/pull/2703
- [micromamba] Split Mamba and Micromamba installation docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2719
- [micromamba] fix: Shell completion section title missing by @wy-luke in https://github.com/mamba-org/mamba/pull/2764
- [all] Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762

2023.07.13
==========

Expand Down
34 changes: 34 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
libmamba 1.5.0 (August 24, 2023)
================================

Enhancements:

- All headers at the top by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2658
- Add boolean expression tree by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2591
- Add VersionSpec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2502
- Use xdg schemas for config saving/reading (minified) by @danpf in https://github.com/mamba-org/mamba/pull/2714
- specs platform by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2729
- Safe Curl opt in url.cpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2734
- Add win-arm64 support by @isuruf in https://github.com/mamba-org/mamba/pull/2745
- Move util_string to utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2739
- Remove get_clean_dirs() by @jonashaag in https://github.com/mamba-org/mamba/pull/2748
- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759
- Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744
- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760
- New apis for downloading by @JohanMabille in https://github.com/mamba-org/mamba/pull/2695

Bug fixes:

- Respect subdir in match spec by @ThomasBlauthQC in https://github.com/mamba-org/mamba/pull/2300
- Fixed move constructor in CURLHandle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2710
- Remove created prefix if aborted with --platform by @Hind-M in https://github.com/mamba-org/mamba/pull/2738
- Add missing newline in legacy errors by @jaimergp in https://github.com/mamba-org/mamba/pull/2743
- fix: added missing hook_preamble() for powershell hook by @chawyehsu in https://github.com/mamba-org/mamba/pull/2761
- Fix fish completion by @soraxas in https://github.com/mamba-org/mamba/pull/2769
- Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749

CI fixes and doc:

- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762

libmamba 1.4.9 (July 13, 2023)
==============================

Expand Down
4 changes: 2 additions & 2 deletions libmamba/include/mamba/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <string>

#define LIBMAMBA_VERSION_MAJOR 1
#define LIBMAMBA_VERSION_MINOR 4
#define LIBMAMBA_VERSION_PATCH 9
#define LIBMAMBA_VERSION_MINOR 5
#define LIBMAMBA_VERSION_PATCH 0

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
13 changes: 13 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
libmambapy 1.5.0 (August 24, 2023)
==================================

Enhancements:

- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759
- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760

CI fixes and doc:

- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762

libmambapy 1.4.9 (July 13, 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, 9)
version_info = (1, 5, 0)
__version__ = ".".join(map(str, version_info))
23 changes: 23 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
mamba 1.5.0 (August 24, 2023)
=============================

Enhancements:

- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759
- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760

Bug fixes:

- Fix Repo missing url by @Hind-M in https://github.com/mamba-org/mamba/pull/2723
- Try Revert "Fix Repo missing url" by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2730
- fix subcommands handling in recent versions of conda by @jaimergp in https://github.com/mamba-org/mamba/pull/2732
- Try fix Missing Url error by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2731
- fix: only reactivate current environment by @chawyehsu in https://github.com/mamba-org/mamba/pull/2763

CI fixes and doc:

- Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675
- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- Put more "not recommended" warnings in the installation instructions by @jonashaag in https://github.com/mamba-org/mamba/pull/2711
- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762

mamba 1.4.9 (July 13, 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, 9)
version_info = (1, 5, 0)
__version__ = ".".join(map(str, version_info))
31 changes: 31 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
micromamba 1.5.0 (August 24, 2023)
==================================

Enhancements:

- Refactor test_repoquery to use new fixtures by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2691
- Remove warnings from test_activation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2727
- Refactor test_shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2726
- Fix and improve static builds by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2755
- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759
- Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744
- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760

Bug fixes:

- Fix wrong activated PATH in micromamba shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2722
- Fix config list sources by @Hind-M in https://github.com/mamba-org/mamba/pull/2756
- Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749
- Strong pin in test by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2774
- Revert failing test by @jonashaag in https://github.com/mamba-org/mamba/pull/2777

CI fixes and doc:

- Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675
- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- Add command to docs for completeness by @danpf in https://github.com/mamba-org/mamba/pull/2717
- fix: Correct a command in installation.rst by @wy-luke in https://github.com/mamba-org/mamba/pull/2703
- Split Mamba and Micromamba installation docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2719
- fix: Shell completion section title missing by @wy-luke in https://github.com/mamba-org/mamba/pull/2764
- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762

micromamba 1.4.9 (July 13, 2023)
================================

Expand Down
4 changes: 2 additions & 2 deletions micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <string>

#define UMAMBA_VERSION_MAJOR 1
#define UMAMBA_VERSION_MINOR 4
#define UMAMBA_VERSION_PATCH 9
#define UMAMBA_VERSION_MINOR 5
#define UMAMBA_VERSION_PATCH 0

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 795734f

Please sign in to comment.