Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion VERSION.meta
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

MAJOR=0
MINOR=6
PATCH=0
PATCH=1
DEV_NUMBER=
BUILD_NUMBER=
BRANCH=main
24 changes: 12 additions & 12 deletions docs/articles/users/tutorials/02-environments/01-manage-envs.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ You can maintain multiple environments for different projects:

```bash
# Project-specific environments
hatch env create project-a --description "Environment for Project A" --python-version 3.11
hatch env create project-b --description "Environment for Project B" --python-version 3.12
hatch env create project_a --description "Environment for Project A" --python-version 3.11
hatch env create project_b --description "Environment for Project B" --python-version 3.12

# Switch between them as needed
hatch env use project-a
hatch env use project_a
# Work on project A...

hatch env use project-b
hatch env use project_b
# Work on project B...
```

Expand All @@ -120,22 +120,22 @@ Create three environments with different Python versions, switch between them, a

```bash
# Create environments
hatch env create env-311 --python-version 3.11 --description "Python 3.11 environment"
hatch env create env-312 --python-version 3.12 --description "Python 3.12 environment"
hatch env create env-313 --python-version 3.13 --description "Python 3.13 environment"
hatch env create env_311 --python-version 3.11 --description "Python 3.11 environment"
hatch env create env_312 --python-version 3.12 --description "Python 3.12 environment"
hatch env create env_313 --python-version 3.13 --description "Python 3.13 environment"

# Switch between them
hatch env use env-311
hatch env current # Should show env-311
hatch env use env_311
hatch env current # Should show env_311

hatch env use env-312
hatch env current # Should show env-312
hatch env use env_312
hatch env current # Should show env_312

# List to see all three
hatch env list

# Remove one
hatch env remove env-313
hatch env remove env_313
```

</details>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ cat described-package/hatch_metadata.json
The description should appear in the metadata and README files.
</details>

> Previous: [Environment Management Checkpoint](../02-environments/03-checkpoint.md)
> Next: [Edit Metadata](02-edit-metadata.md)
> Previous: [Environment Management Checkpoint](../02-environments/03-checkpoint.md)
> Next: [Implement Functionality](02-implement-functionality.md)
231 changes: 0 additions & 231 deletions docs/articles/users/tutorials/03-author-package/02-edit-metadata.md

This file was deleted.

Loading