Commit 5db5c925 by Konstantin Molchanov Committed by Sébastien Eustace

Update changelog and CLI reference. (#74)

* Update changelog and CLI reference.

* Update changelog and CLI reference.
parent 5b14bd10
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
- Dependency resolution caches now use sha256 hashes. - Dependency resolution caches now use sha256 hashes.
- Changed CLI error style. - Changed CLI error style.
- Improved debugging of dependency resolution. - Improved debugging of dependency resolution.
- Poetry now attemps to find `pyproject.toml` not only in the directory it was
invoked in, but in all its parents up to the root. This allows to run Poetry
commands in project subdirectories.
- Made the email address for authors optional. - Made the email address for authors optional.
### Fixed ### Fixed
...@@ -48,7 +51,6 @@ ...@@ -48,7 +51,6 @@
- Fixed unicode error in `search` command for Python 2.7. - Fixed unicode error in `search` command for Python 2.7.
- Fixed error with git dependencies. - Fixed error with git dependencies.
## [0.8.3] - 2018-04-16 ## [0.8.3] - 2018-04-16
### Fixed ### Fixed
...@@ -257,7 +259,7 @@ ...@@ -257,7 +259,7 @@
### Added ### Added
- Added `show` command. - Added `show` command.
- Added the `--dry-run` option to the `add` command. - Added the `--dry-run` option to the `add` command.
### Changed ### Changed
......
...@@ -56,8 +56,8 @@ poetry new my-folder --name my-package ...@@ -56,8 +56,8 @@ poetry new my-folder --name my-package
## install ## install
The `install` command reads the `pyproject.toml` file from the current directory, resolves the dependencies, The `install` command reads the `pyproject.toml` file from the current project,
and installs them. resolves the dependencies, and installs them.
```bash ```bash
poetry install poetry install
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment