diff --git a/docs/changelog.md b/docs/changelog.md index 5084a83b0..4b9b4dc75 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,19 +1,5 @@ # Changelog -- ⬆️ Release core [PR](https://github.com/laminlabs/lamindb/pull/1658) [@sunnyosun](https://github.com/sunnyosun) -- 🐛 Fix from_values [PR](https://github.com/laminlabs/lamindb/pull/1657) [@sunnyosun](https://github.com/sunnyosun) -- ⬆️ Release lamindb-setup [PR](https://github.com/laminlabs/lamindb/pull/1656) [@sunnyosun](https://github.com/sunnyosun) -- 🎨 Enable transfer when schema don't match [PR](https://github.com/laminlabs/lamindb/pull/1654) [@sunnyosun](https://github.com/sunnyosun) -- ✨ Get artifacts through the CLI [PR](https://github.com/laminlabs/lamindb/pull/1642) [@falexwolf](https://github.com/falexwolf) -- 🐛 Fix copy_or_move_to_cache for local storage_path [PR](https://github.com/laminlabs/lamindb/pull/1653) [@Koncopd](https://github.com/Koncopd) -- ⚡️ Improve the speed of describe [PR](https://github.com/laminlabs/lamindb/pull/1645) [@sunnyosun](https://github.com/sunnyosun) -- ⚡️ Parallel hashing of directories [PR](https://github.com/laminlabs/lamindb/pull/1652) [@Koncopd](https://github.com/Koncopd) -- ⚡️ Speed-up file hash [PR](https://github.com/laminlabs/lamindb/pull/1651) [@Koncopd](https://github.com/Koncopd) -- ♻️ Refactor search [PR](https://github.com/laminlabs/lamindb/pull/1646) [@falexwolf](https://github.com/falexwolf) -- ✨ Introduce bulk update [PR](https://github.com/laminlabs/lamindb/pull/1640) [@falexwolf](https://github.com/falexwolf) -- ⬆️ Upgrade nbproject [PR](https://github.com/laminlabs/lamindb/pull/1641) [@Koncopd](https://github.com/Koncopd) -- 🚸 No need to pass organism if validating on ids [PR](https://github.com/laminlabs/lamindb/pull/1639) [@sunnyosun](https://github.com/sunnyosun) -- Fix registry links in docs [PR](https://github.com/laminlabs/lamindb/pull/1638) [@Zethson](https://github.com/Zethson) :::{note} If using LaminHub, please use the latest version of lamindb. @@ -28,6 +14,17 @@ LaminDB implements "migration-based versioning". When upgrading your LaminDB ins ## 0.71 +### 0.71.3 {small}`2024-05-14` + +- 🎨 Enable transfer when schema don't match [PR](https://github.com/laminlabs/lamindb/pull/1654) [@sunnyosun](https://github.com/sunnyosun) +- ✨ Get artifacts through the CLI [PR](https://github.com/laminlabs/lamindb/pull/1642) [@falexwolf](https://github.com/falexwolf) +- ⚡️ Improve the speed of describe [PR](https://github.com/laminlabs/lamindb/pull/1645) [@sunnyosun](https://github.com/sunnyosun) +- ⚡️ Parallel hashing of directories [PR](https://github.com/laminlabs/lamindb/pull/1652) [@Koncopd](https://github.com/Koncopd) +- ⚡️ Speed-up file hash [PR](https://github.com/laminlabs/lamindb/pull/1651) [@Koncopd](https://github.com/Koncopd) +- ♻️ Refactor search [PR](https://github.com/laminlabs/lamindb/pull/1646) [@falexwolf](https://github.com/falexwolf) +- ✨ Introduce bulk update [PR](https://github.com/laminlabs/lamindb/pull/1640) [@falexwolf](https://github.com/falexwolf) +- 🚸 No need to pass organism if validating on ids [PR](https://github.com/laminlabs/lamindb/pull/1639) [@sunnyosun](https://github.com/sunnyosun) + ### 0.71.2 {small}`2024-05-07` - ✨ Enable passing parameters to `ln.track()` [PR](https://github.com/laminlabs/lamindb/pull/1637) [@falexwolf](https://github.com/falexwolf) diff --git a/lamindb/__init__.py b/lamindb/__init__.py index c23b6b26c..f7d201196 100644 --- a/lamindb/__init__.py +++ b/lamindb/__init__.py @@ -41,7 +41,7 @@ """ # denote a release candidate for 0.1.0 with 0.1rc1, 0.1a1, 0.1b1, etc. -__version__ = "0.71.2" +__version__ = "0.71.3" import os as _os