-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# History of changes | ||
|
||
## Version 0.1.0 (2022-11-22) | ||
|
||
### Issues Closed | ||
|
||
* [Issue 17](https://github.com/spyder-ide/envs-manager/issues/17) - Add package dependency attribute ([PR 19](https://github.com/spyder-ide/envs-manager/pull/19) by [@dalthviz](https://github.com/dalthviz)) | ||
* [Issue 12](https://github.com/spyder-ide/envs-manager/issues/12) - Add more info when listing packages ([PR 18](https://github.com/spyder-ide/envs-manager/pull/18) by [@dalthviz](https://github.com/dalthviz)) | ||
* [Issue 10](https://github.com/spyder-ide/envs-manager/issues/10) - Add `list_environments` command ([PR 16](https://github.com/spyder-ide/envs-manager/pull/16) by [@dalthviz](https://github.com/dalthviz)) | ||
* [Issue 9](https://github.com/spyder-ide/envs-manager/issues/9) - Add `update` command for packages ([PR 15](https://github.com/spyder-ide/envs-manager/pull/15) by [@dalthviz](https://github.com/dalthviz)) | ||
* [Issue 8](https://github.com/spyder-ide/envs-manager/issues/8) - Import - Export behavior Conda vs Micromamba and tests with conda executable ([PR 14](https://github.com/spyder-ide/envs-manager/pull/14) by [@dalthviz](https://github.com/dalthviz)) | ||
|
||
In this release 5 issues were closed. | ||
|
||
### Pull Requests Merged | ||
|
||
* [PR 21](https://github.com/spyder-ide/envs-manager/pull/21) - PR: Add initial release instructions, by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 20](https://github.com/spyder-ide/envs-manager/pull/20) - PR: Update package name due to name collision with `envmanager` package, by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 19](https://github.com/spyder-ide/envs-manager/pull/19) - PR: Add attribute to keep track of packages whose installation was actually requested when listing them, by [@dalthviz](https://github.com/dalthviz) ([17](https://github.com/spyder-ide/envs-manager/issues/17)) | ||
* [PR 18](https://github.com/spyder-ide/envs-manager/pull/18) - PR: Add description info for listed packages and increase CI timeout to 20 min, by [@dalthviz](https://github.com/dalthviz) ([12](https://github.com/spyder-ide/envs-manager/issues/12)) | ||
* [PR 16](https://github.com/spyder-ide/envs-manager/pull/16) - PR: Initial implementation to pass name instead of full directory for environments and list environments command, by [@dalthviz](https://github.com/dalthviz) ([10](https://github.com/spyder-ide/envs-manager/issues/10)) | ||
* [PR 15](https://github.com/spyder-ide/envs-manager/pull/15) - PR: Add update packages command and refactor `executable`/`executable_path` attributtes, by [@dalthviz](https://github.com/dalthviz) ([9](https://github.com/spyder-ide/envs-manager/issues/9)) | ||
* [PR 14](https://github.com/spyder-ide/envs-manager/pull/14) - PR: Handle conda vs micromamba case to export envs and add testing jobs with conda executable, by [@dalthviz](https://github.com/dalthviz) ([8](https://github.com/spyder-ide/envs-manager/issues/8)) | ||
* [PR 11](https://github.com/spyder-ide/envs-manager/pull/11) - PR: Update create, delete, list commands and fix output management for uninstall, by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 5](https://github.com/spyder-ide/envs-manager/pull/5) - PR: Add initial import/export functionality and tests, by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 4](https://github.com/spyder-ide/envs-manager/pull/4) - PR: Install/uninstall logic improvements, mamba backend removal and workflows for Windows and MacOS, by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 3](https://github.com/spyder-ide/envs-manager/pull/3) - PR: Fix test workflow syntax and update README (CI, docs), by [@dalthviz](https://github.com/dalthviz) | ||
* [PR 2](https://github.com/spyder-ide/envs-manager/pull/2) - PR: Initial package structure, CLI and interface ideas, by [@dalthviz](https://github.com/dalthviz) | ||
|
||
In this release 12 pull requests were closed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# SPDX-FileCopyrightText: 2022-present Spyder Development Team and envs-manager contributors | ||
# | ||
# SPDX-License-Identifier: MIT | ||
__version__ = "0.1.0.dev0" | ||
__version__ = "0.1.0" |