Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaochao Dong (@damnever) <the.xcdong@gmail.com>
  • Loading branch information
damnever committed Dec 2, 2022
1 parent c665a52 commit 75c2881
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Change Logs

#### Version 2.0.0b1 (2022.11.27)
#### Version 2.0.0 (2022.12.02)

This version has changed a lot of things, most of them are **BREAKING CHANGE**s!

Expand All @@ -11,12 +11,12 @@ This version has changed a lot of things, most of them are **BREAKING CHANGE**s!
- `pigar check` to check the latest versions of requirements.
- `pigar -h` to explore more.
- `pigar` accepts a prefix for a command, such as `pigar gen`, `pigar c`.
- **Refactored/changed a lot of code and interfaces.**
- **Refactored a lot of code and interfaces.**
- [Vendoring](https://github.com/pradyunsg/vendoring) the [pip](https://github.com/pypa/pip) to access more sophisticated utilities(`pip` named it's module as `_internal` so vendoring technology is introduced).
- Fixed a lot of issues when parsing the requirements file, e.g. [#113](https://github.com/damnever/pigar/issues/113).
- Fixed the issues for editable requirements, e.g. [#60](https://github.com/damnever/pigar/issues/60).
- Tweaked some default actions and introduced more options for better user experience.
- `pigar` will ask user to choose the right packages/distributions if `pigar` has found multiple packages/distributions for the same module names. With`--auto-select` enabled, `pigar` will guess the best matched one or choose all possible packages/distributions automatically.
- `pigar` will ask user to choose the right packages/distributions if `pigar` has found multiple packages/distributions for the same module names. With `--auto-select` enabled, `pigar` will guess the best matched one or choose all possible packages/distributions automatically.
- Added an option `--dry-run` which allows `pigar` to not write a requirements.txt file, just print it.
- Added an option `--follow-symbolic-links/--dont-follow-symbolic-links` to let user decide whether to follow the symbolic links, fixed [#89](https://github.com/damnever/pigar/issues/89).
- Added an option `-i/--index-url` to allow the custom URL of the Python Package Index, fixed [#52](https://github.com/damnever/pigar/issues/52).
Expand Down
2 changes: 1 addition & 1 deletion pigar/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = __version__ = '2.0.0b2'
version = __version__ = '2.0.0'

0 comments on commit 75c2881

Please sign in to comment.