Skip to content

Commit

Permalink
feat: upgrade micromamba internal version to 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
luciorq committed Nov 27, 2024
1 parent 83d460a commit 88f1cad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: condathis
Title: Run Any CLI Tool on a Conda Environment
Version: 0.0.6.9008
Version: 0.0.6.9009
Authors@R: c(
person("Lucio", "Queiroz", , "[email protected]", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0002-6090-1834")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Minor improvements and fixes

* Internal `micromamba` version bump to "2.0.2-2".
* Internal `micromamba` version bump to ~~"2.0.2-2"~~ "2.0.4-0".

* `create_env()` and `remove_env()` have improved output.

Expand Down
6 changes: 3 additions & 3 deletions R/install_micromamba.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#' to create and manage conda environments.
#'
#' @param micromamba_version Character string specifying the version of Micromamba to download.
#' Defaults to `"2.0.2-2"`.
#' Defaults to `"2.0.4-0"`.
#'
#' @param timeout_limit Numeric value specifying the timeout limit for downloading the Micromamba
#' binaries, in seconds. Defaults to `3600` seconds (1 hour).
Expand Down Expand Up @@ -33,14 +33,14 @@
#' condathis::install_micromamba()
#'
#' # Install a specific version of Micromamba
#' condathis::install_micromamba(micromamba_version = "2.0.2-1")
#' condathis::install_micromamba(micromamba_version = "2.0.2-2")
#'
#' # Force reinstallation of Micromamba
#' condathis::install_micromamba(force = TRUE)
#' }
#'
#' @export
install_micromamba <- function(micromamba_version = "2.0.2-2",
install_micromamba <- function(micromamba_version = "2.0.4-0",
timeout_limit = 3600,
download_method = "auto",
force = FALSE) {
Expand Down
6 changes: 3 additions & 3 deletions man/install_micromamba.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 88f1cad

Please sign in to comment.