Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Nov 1, 2022
1 parent 5986f83 commit c5d73a2
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 6 deletions.
35 changes: 35 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
==================================

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 @@ -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
Expand Down
27 changes: 27 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
====================================

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 = (0, 27, 0)
version_info = (1, 0, 0)
__version__ = ".".join(map(str, version_info))
28 changes: 28 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
===============================

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 = (0, 27, 0)
version_info = (1, 0, 0)
__version__ = ".".join(map(str, version_info))
32 changes: 32 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
====================================

Expand Down
4 changes: 2 additions & 2 deletions micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5d73a2

Please sign in to comment.