mirror of https://github.com/mamba-org/mamba.git
update all release files
This commit is contained in:
parent
fa13a3b8a1
commit
25be29a831
|
@ -1,3 +1,21 @@
|
|||
libmamba 0.26.0 (September 30, 2022)
|
||||
====================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- add symlinks and empty directories to archive for `micromamba package compress` #1955
|
||||
- increase curl buffer size for faster max download speeds (thanks @jonashaag) #1949
|
||||
- fix crash when installing from environment lockfile (thanks @Klaim) #1893
|
||||
- fix linux version regex (thanks @kelszo) #1852
|
||||
- remove duplicate console output (thanks @pavelzw) #1845
|
||||
|
||||
Enhancements:
|
||||
|
||||
- add option to disable file locks globally (thanks @danpf @JohanMabille) #1830
|
||||
- extend graph class for better solver messaging work (thanks @syslaila @AntoinePrv) #1880
|
||||
- use std::filesystem instead of ghc::filesystem (thanks @Klaim) #1665
|
||||
- add missing SolverRuleInfo enum entries (thanks @AntoinePrv) #1833
|
||||
|
||||
libmamba 0.25.0 (July 26, 2022)
|
||||
===============================
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 25
|
||||
#define LIBMAMBA_VERSION_MINOR 26
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmambapy 0.26.0 (September 30, 2022)
|
||||
======================================
|
||||
|
||||
|
||||
libmambapy 0.25.0 (July 26, 2022)
|
||||
=================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 25, 0)
|
||||
version_info = (0, 26, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
mamba 0.26.0 (September 30, 2022)
|
||||
=================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- fix mamba.sh and mamba.bat shell scripts to work with conda 22.09 #1952
|
||||
- remove usage of non-existing function (thanks @AntoinePrv) #1835
|
||||
|
||||
mamba 0.25.0 (July 26, 2022)
|
||||
============================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 25, 0)
|
||||
version_info = (0, 26, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
micromamba 0.26.0 (September 30, 2022)
|
||||
======================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- fix fish scripts (thanks @jonashaag) #1975
|
||||
- fix issues with `micromamba ps` #1953
|
||||
- add symlinks and empty directories to archive for `micromamba package compress` #1955
|
||||
- add `micromamba info --licenses` to print licenses of used OSS (thanks @jonashaag) #1933
|
||||
- proper quoting in `micromamba run` (thanks @jonashaag) #1936
|
||||
- install pip dependencies and by category for YAML lockfiles (thanks @jvansanten) #1908 #1917
|
||||
- fix update for packages with explicit channels (thanks @AntoinePrv) #1864
|
||||
|
||||
Enhancements:
|
||||
|
||||
- only call compinit once to fix oh-my-zsh (thanks @AntoinePrv) #1911
|
||||
- CI: add fully static micromamba build (thanks @jonashaag) #1821
|
||||
|
||||
micromamba 0.25.1 (July 29, 2022)
|
||||
=================================
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
#include <string>
|
||||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 25
|
||||
#define UMAMBA_VERSION_PATCH 1
|
||||
#define UMAMBA_VERSION_MINOR 26
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue