From 5340bed58a80ca07f0a0cfffeb0952eb12ce9178 Mon Sep 17 00:00:00 2001 From: Sarthak Jariwala Date: Fri, 17 Jun 2022 11:59:35 -0700 Subject: [PATCH] update version no and release notes --- docs/release_notes.md | 58 +++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/docs/release_notes.md b/docs/release_notes.md index c2a9a10..49252c1 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -1,6 +1,64 @@ # Release Notes +## :sparkles: **v0.7.0** + +Requires Python>=3.7 + +### :rocket: Features + +- `create` command can be used to create environments from lock file. + +This unifies `create` command as the way to create new environments from scratch, from specifications file or from lock file. + +
+ +```console +$ ezconda create --file mlproj-darwin-x86_64.lock + +// Creates environment from mlproj-darwin-x86_64.lock +``` +
+ +- Sync local conda environment with updated specifications file using `sync` command. + +
+ +```console +$ ezconda sync -n ml-proj --with specfile + +// Syncs 'ml-proj' environment with 'ml-proj.yml' file +``` + +
+ +- Sync local conda environment with updated lock file using `sync` command. + +
+ +```console +$ ezconda sync -n ml-proj --with lockfile + +// Syncs 'ml-proj' environment with corresponding lock file +``` + +
+ +### :fire: Deprecations + +- `recreate` command is deprecated and will be removed in v0.8.0. Use `create` instead for creating new environments from lock file. + +### :beetle: Fix + +- `version` command now shows the correct version. + +### :package: Build System + +- `importlib-metadata` is now a dependency. +- Minimum supported version of Python is 3.7. + +--- + ## :sparkles: **v0.6.0** ### :rocket: Features diff --git a/pyproject.toml b/pyproject.toml index a4d9db1..e8b2316 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ezconda" -version = "0.6.0" +version = "0.7.0" description = "Create, Manage, Re-create conda environments & specifications with ease." authors = ["Sarthak Jariwala"] readme = "README.md"