Skip to content

Commit

Permalink
update version no and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
SarthakJariwala committed Jun 17, 2022
1 parent 5bf27ec commit 5340bed
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
58 changes: 58 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
@@ -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.

<div class="termy">

```console
$ ezconda create --file mlproj-darwin-x86_64.lock

// Creates environment from mlproj-darwin-x86_64.lock
```
</div>

- Sync local conda environment with updated specifications file using `sync` command.

<div class="termy">

```console
$ ezconda sync -n ml-proj --with specfile

// Syncs 'ml-proj' environment with 'ml-proj.yml' file
```

</div>

- Sync local conda environment with updated lock file using `sync` command.

<div class="termy">

```console
$ ezconda sync -n ml-proj --with lockfile

// Syncs 'ml-proj' environment with corresponding lock file
```

</div>

### :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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 5340bed

Please sign in to comment.