release 1.0.0

This commit is contained in:
Wolf Vollprecht 2022-11-01 21:01:36 +01:00
parent 5986f83a04
commit c5d73a204b
8 changed files with 128 additions and 6 deletions

View File

@ -1,3 +1,38 @@
libmamba 1.0.0 (November 01, 2022)
==================================
Our biggest version number yet! Finally a 1.0 release :)
New notable micromamba features include:
- - improved shell scripts with autocompletion available in PowerShell, xonsh, fish, bash and zsh
- - `micromamba shell -n someenv`: enter a sub-shell without modifying the system
- - `micromamba self-update`: micromamba searches for updates and installs them if available
(you can also downgrade using `--version 0.26.0` for example)
Bug fixes:
- ignore "Permission denied" in `env::which` (thanks @Rafflesiaceae) #2067
- Fix an infinite loop in replace_all() when the search string is empty (thanks @tsibley)
- Do not crash when permissions cannot be changed, instead log warning (thanks @hwalinga)
Enhancements:
- Rewrite LockFile interface (thanks @Klaim) #2014
- Fix ci deprecation warnings, upload conda-bld artifacts for failed builds #2058, #2062
- Explicitly define SPDLOG_FMT_EXTERNAL and use spdlog header only use external fmt (thanks @AntoinePrv) #2060, #2048
- Fix CI by pointing to updated feedstock and fixing update tests (thanks @AntoinePrv) #2055
- Add authentication with urlencoded @ to proxy test (#2024) @AdrianFreundQC
- better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012
- ProblemsGraph compression (thanks @AntoinePrv) #2019
- vector_set compare function (thanks @AntoinePrv) #2051
- Clean up util_graph header and tests (thanks @AntoinePrv) #2039
- Add string utilities (thanks @AntoinePrv) #
- Dynamic tree walk of the Compressed problem graph
- Creating the initial problems graph (thanks @syslaila) #1891
libmamba 0.27.0 (October 04, 2022)
==================================

View File

@ -10,8 +10,8 @@
#include <array>
#include <string>
#define LIBMAMBA_VERSION_MAJOR 0
#define LIBMAMBA_VERSION_MINOR 27
#define LIBMAMBA_VERSION_MAJOR 1
#define LIBMAMBA_VERSION_MINOR 0
#define LIBMAMBA_VERSION_PATCH 0
// Binary version

View File

@ -1,3 +1,30 @@
libmambapy 1.0.0 (November 01, 2022)
====================================
Our biggest version number yet! Finally a 1.0 release :)
New notable micromamba features include:
- - improved shell scripts with autocompletion available in PowerShell, xonsh, fish, bash and zsh
- - `micromamba shell -n someenv`: enter a sub-shell without modifying the system
- - `micromamba self-update`: micromamba searches for updates and installs them if available
(you can also downgrade using `--version 0.26.0` for example)
Bug fixes:
- Ensure package record always has subdir (thanks @jaimergp) #2016
Enhancements:
- add stubs with pybind11-stubgen (thanks @dholth) #1983
- Fix ci deprecation warnings, upload conda-bld artifacts for failed builds #2058, #2062
- Explicitly define SPDLOG_FMT_EXTERNAL and use spdlog header only use external fmt (thanks @AntoinePrv) #2060, #2048
- Fix CI by pointing to updated feedstock and fixing update tests (thanks @AntoinePrv) #2055
- Add authentication with urlencoded @ to proxy test (#2024) @AdrianFreundQC
- better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012
libmambapy 0.27.0 (October 04, 2022)
====================================

View File

@ -1,2 +1,2 @@
version_info = (0, 27, 0)
version_info = (1, 0, 0)
__version__ = ".".join(map(str, version_info))

View File

@ -1,3 +1,31 @@
mamba 1.0.0 (November 01, 2022)
===============================
Our biggest version number yet! Finally a 1.0 release :)
New notable micromamba features include:
- - improved shell scripts with autocompletion available in PowerShell, xonsh, fish, bash and zsh
- - `micromamba shell -n someenv`: enter a sub-shell without modifying the system
- - `micromamba self-update`: micromamba searches for updates and installs them if available
(you can also downgrade using `--version 0.26.0` for example)
Bug fixes:
- Ensure package record always has subdir (thanks @jaimergp) #2016
Enhancements:
- Support for mamba init fish (thanks @dlukes) #2006
- Fix Repoquery help text (thanks @BastianZim) #1998
- Fix ci deprecation warnings, upload conda-bld artifacts for failed builds #2058, #2062
- Explicitly define SPDLOG_FMT_EXTERNAL and use spdlog header only use external fmt (thanks @AntoinePrv) #2060, #2048
- Fix CI by pointing to updated feedstock and fixing update tests (thanks @AntoinePrv) #2055
- Add authentication with urlencoded @ to proxy test (#2024) @AdrianFreundQC
- better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012
mamba 0.27.0 (October 04, 2022)
===============================

View File

@ -1,2 +1,2 @@
version_info = (0, 27, 0)
version_info = (1, 0, 0)
__version__ = ".".join(map(str, version_info))

View File

@ -1,3 +1,35 @@
micromamba 1.0.0 (November 01, 2022)
====================================
Our biggest version number yet! Finally a 1.0 release :)
New notable micromamba features include:
- - improved shell scripts with autocompletion available in PowerShell, xonsh, fish, bash and zsh
- - `micromamba shell -n someenv`: enter a sub-shell without modifying the system
- - `micromamba self-update`: micromamba searches for updates and installs them if available
(you can also downgrade using `--version 0.26.0` for example)
Bug fixes:
- ignore "Permission denied" in `env::which` (thanks @Rafflesiaceae) #2067
- Link micromamba with static libc++.a and system libc++abi (thanks @isuruf) #2069
- Fix an infinite loop in replace_all() when the search string is empty (thanks @tsibley)
- Do not crash when permissions cannot be changed, instead log warning (thanks @hwalinga)
Enhancements:
- Add `micromamba env remove` (thanks @Hind-M) #2002
- add self-update functionality (#2023)
- order dependencies alphabetically from `micromamba env export` (thanks @torfinnberset) #2063
- Fix ci deprecation warnings, upload conda-bld artifacts for failed builds #2058, #2062
- Explicitly define SPDLOG_FMT_EXTERNAL and use spdlog header only use external fmt (thanks @AntoinePrv) #2060, #2048
- Fix CI by pointing to updated feedstock and fixing update tests (thanks @AntoinePrv) #2055
- Add authentication with urlencoded @ to proxy test (#2024) @AdrianFreundQC
- better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012
micromamba 0.27.0 (October 04, 2022)
====================================

View File

@ -10,8 +10,8 @@
#include <array>
#include <string>
#define UMAMBA_VERSION_MAJOR 0
#define UMAMBA_VERSION_MINOR 27
#define UMAMBA_VERSION_MAJOR 1
#define UMAMBA_VERSION_MINOR 0
#define UMAMBA_VERSION_PATCH 0
// Binary version