Skip to content

Commit

Permalink
πŸ”– Release 0.70.0
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Apr 17, 2024
1 parent 084d90c commit c8879e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
# Changelog

- ♻️ Prettify Vitessce integration [PR](https://github.com/laminlabs/lamindb/pull/1574) [@falexwolf](https://github.com/falexwolf)
- ♻️ Simplify `ln.finish()` [PR](https://github.com/laminlabs/lamindb/pull/1573) [@falexwolf](https://github.com/falexwolf)
- 🚚 Deprecate `stage()` in favor of `cache()` [PR](https://github.com/laminlabs/lamindb/pull/1572) [@falexwolf](https://github.com/falexwolf)
- 🚸 Error if the exact same artifact is returned from trash [PR](https://github.com/laminlabs/lamindb/pull/1550) [@falexwolf](https://github.com/falexwolf)
- 🚸 Update data lineage information in case transform is re-run [PR](https://github.com/laminlabs/lamindb/pull/1571) [@falexwolf](https://github.com/falexwolf)
- πŸ“ Simplify describe fields [PR](https://github.com/laminlabs/lamindb/pull/1569) [@sunnyosun](https://github.com/sunnyosun)
:::{note}

When upgrading your LaminDB installation to a new `minor` version in `major.minor.patch`, you need to migrate your database by calling `lamin migrate deploy` (migration-centered as opposed to semantic versioning).
LaminDB implements "migration-based versioning".

This is because LaminDB persists _core metadata_ based on its [slowly migrating core SQL schema](https://github.com/laminlabs/lnschema-core/tree/main/lnschema_core/migrations).
When upgrading your LaminDB installation to a new `minor` version in `major.minor.patch`, you also migrate your database by calling `lamin migrate deploy`.

:::

```{eval-rst}
.. role:: small
```

## 0.70

### 0.70.0 {small}`2024-04-17`

- 🚸 Update data source in case transform is re-run [PR](https://github.com/laminlabs/lamindb/pull/1571) [@falexwolf](https://github.com/falexwolf)
- 🚸 Enable to label transforms via `transform.ulabels` [PR](https://github.com/laminlabs/lnschema-core/pull/370) [@falexwolf](https://github.com/falexwolf)
- 🚚 Deprecate `stage()` in favor of `cache()` [PR](https://github.com/laminlabs/lamindb/pull/1572) [@falexwolf](https://github.com/falexwolf)

## 0.69

### 0.69.10 {small}`2024-04-12`
Expand Down
2 changes: 1 addition & 1 deletion lamindb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"""

__version__ = "0.69.10" # denote a release candidate for 0.1.0 with 0.1rc1
__version__ = "0.70.0" # denote a release candidate for 0.1.0 with 0.1rc1

import os as _os

Expand Down

0 comments on commit c8879e9

Please sign in to comment.