From 75c28815f7b6055fe6e6d401cb1b295274a2ed5b Mon Sep 17 00:00:00 2001 From: "Xiaochao Dong (@damnever)" Date: Fri, 2 Dec 2022 20:29:56 +0800 Subject: [PATCH] Version 2.0.0 Signed-off-by: Xiaochao Dong (@damnever) --- CHANGELOG.md | 6 +++--- pigar/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 391bd20..d055039 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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! @@ -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). diff --git a/pigar/version.py b/pigar/version.py index 8cc987e..20c46f3 100644 --- a/pigar/version.py +++ b/pigar/version.py @@ -1 +1 @@ -version = __version__ = '2.0.0b2' +version = __version__ = '2.0.0'