Skip to content

Commit

Permalink
🚀 Release 0.4.0 (#137)
Browse files Browse the repository at this point in the history
* update changelog and version number

* specify utils pkg

* set pkgdown develop mode to auto
  • Loading branch information
rcannood authored Jan 20, 2025
1 parent f296549 commit 7c15f5b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
# laminr devel
# laminr v0.4.0

## MAJOR CHANGES
Minor (breaking) changes to support the Python `lamindb` v1.0 release.

## BREAKING CHANGES

- Updates for compatibility with the Python `lamindb` v1.0 release
- Updates for compatibility with the Python `lamindb` v1.0 release (PR #136)

## MINOR CHANGES

- `db$track()` can not automatically create a transform UID when not supplied
- `db$track()` can not automatically create a transform UID when not supplied (PR #136)


# laminr v0.3.1

This release improves the UX for setting up the Python environment and adds functions to allow access to CLI functionality from R.

## NEW FUNCTIONALITY

- Add a `install_lamindb()` function to help with setting up the default Python environment
- Add `lamin_login()` and `lamin_connect()` functions to allow access to CLI functionality from R
- Add a `install_lamindb()` function to help with setting up the default Python environment (PR #129).
- Add `lamin_login()` and `lamin_connect()` functions to allow access to CLI functionality from R (PR #129).

## DOCUMENTATION

- Add a set up vignette and update other documentation with instructions for how to set up a Python environment
- Add a set up vignette and update other documentation with instructions for how to set up a Python environment (PR #129).


# laminr v0.3.0

Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: laminr
Title: Client for 'LaminDB'
Version: 0.3.1.9000
Version: 0.4.0
Authors@R: c(
person("Robrecht", "Cannoodt", email = "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-3641-729X")),
Expand Down
2 changes: 1 addition & 1 deletion R/Instance.R
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ create_instance <- function(instance_settings, is_default = FALSE) {
if (!is.null(py_lamin)) {
lamin_version <- reticulate::py_get_attr(py_lamin, "__version__")
lamin_version_clean <- sub("([a-zA-Z].*)", "", lamin_version) # Remove pre-release versions, e.g. 1.0a5 -> 1.0
if (compareVersion("1.0.2", lamin_version_clean) == 1) {
if (utils::compareVersion("1.0.2", lamin_version_clean) == 1) {
cli::cli_abort(
c(
paste(
Expand Down
4 changes: 4 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ navbar:
href: articles/module_bionty.html
- text: Wetlab module
href: articles/module_wetlab.html

# https://pkgdown.r-lib.org/reference/build_site.html#development-mode
development:
mode: auto

0 comments on commit 7c15f5b

Please sign in to comment.