You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix Github actions cache issues (#1908)
* Fix case of `-f` flag
* Make it clearer what options to pass to `--format`
* fix (masonry.api): `get_requires_for_build_wheel` must return additional list of requirements for building a package, not listed in `pyproject.toml` and not dependencies for the package itself (#1875)
fix (tests): adopted tests
* Lazy Keyring intialization for PasswordManager (#1892)
* Fix Github Actions cache issues (#1928)
* Avoid nested quantifiers with overlapping character space on git url parsing (#1902 (#1913)
* fix (git): match for `\w` instead of `.` for getting user
* change (vcs.git): hold pattern of the regex parts in a dictionary to be consistent over all regexs
* new (vcs.git): test for `parse_url` and some fixes for the regex pattern
* new (vcs.git): test for `parse_url` with string that should fail
* fix (test.vcs.git): make flake8 happy
* fix: correct parsing of wheel version with regex. (#1932)
The previous regexp was only taking the first integer of the version number,
this presented problems when the major version number reached double digits.
Poetry would determine that the version of the dependency is '1', rather than,
ie: '14'. This caused failures to solve versions.
* Fix errors when using the --help option (#1910)
* Fix how repository credentials are retrieved from env vars (#1909)
# Conflicts:
# poetry/utils/password_manager.py
* Fix downloading packages from Simplepypi (#1851)
* fix downloading packages from simplepypi
* unused code removed
* remove unused imports
* Upgrade dependencies for the 1.0.3 release (#1965)
* Bump version to 1.0.3 (#1966)
* Fix non-compliant Git URL matching
RFC 3986 § 2.3 permits more characters in a URL than were matched. This
corrects that, though there may be other deficiencies. This was a
regression from v1.0.2, where at least “.” was matched without error.
* Update README.md "Updating Poetry"
Currently the note in "Updating Poetry" is different from the one below in "Enable tab completion for Bash, Fish, or Zsh". This MR is to make them more consistent.
* init: change dev dependency prompt
* Fix CI issues (#2069)
Co-authored-by: brandonaut <[email protected]>
Co-authored-by: finswimmer <[email protected]>
Co-authored-by: Yannick PÉROUX <[email protected]>
Co-authored-by: Edward George <[email protected]>
Co-authored-by: Jan Škoda <[email protected]>
Co-authored-by: Andrew Marshall <[email protected]>
Co-authored-by: Andrew Selzer <[email protected]>
Co-authored-by: Andrii Maletskyi <[email protected]>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+15-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Change Log
2
2
3
+
## [1.0.3] - 2020-01-31
4
+
5
+
### Fixed
6
+
7
+
- Fixed an error which caused the configuration environment variables (like `POETRY_HTTP_BASIC_XXX_PASSWORD`) to not be used ([#1909](https://github.com/python-poetry/poetry/pull/1909)).
8
+
- Fixed an error where the `--help` option was not working ([#1910](https://github.com/python-poetry/poetry/pull/1910)).
9
+
- Fixed an error where packages from private indices were not decompressed properly ([#1851](https://github.com/python-poetry/poetry/pull/1851)).
10
+
- Fixed an error where the version of some PEP-508-formatted wheel dependencies was not properly retrieved ([#1932](https://github.com/python-poetry/poetry/pull/1932)).
- Fixed performance issues when custom indices were defined in the `pyproject.toml` file ([#1892](https://github.com/python-poetry/poetry/pull/1892)).
13
+
- Fixed the `get_requires_for_build_wheel()` function of `masonry.api` which wasn't returning the proper result ([#1875](https://github.com/python-poetry/poetry/pull/1875)).
0 commit comments