Skip to content

Commit 36f23f9

Browse files
committed
Bump version to v0.2.0
1 parent 6b18823 commit 36f23f9

11 files changed

+26
-10
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Release v0.2.0 (2020-02-14)
2+
---------------------------
3+
4+
### Features & Improvements
5+
6+
- New option: `pdm list --graph` to show a dependency graph of the working set. [#10](https://github.com/frostming/pdm/issues/10)
7+
- New option: `pdm update --unconstrained` to ignore the version constraint of given packages. [#13](https://github.com/frostming/pdm/issues/13)
8+
- Improve the error message when project is not initialized before running comands. [#19](https://github.com/frostming/pdm/issues/19)
9+
- Pinned candidates in lock file are reused when relocking during `pdm install`. [#33](https://github.com/frostming/pdm/issues/33)
10+
- Use the pyenv interperter value if pyenv is installed. [#36](https://github.com/frostming/pdm/issues/36)
11+
- Introduce a new command `pdm info` to show project environment information. [#9](https://github.com/frostming/pdm/issues/9)
12+
13+
### Bug Fixes
14+
15+
- Fix a bug that candidate hashes will be lost when reused. [#11](https://github.com/frostming/pdm/issues/11)
16+
17+
### Dependencies
18+
19+
- Update `pip` to `20.0`, update `pip_shims` to `0.5.0`. [#28](https://github.com/frostming/pdm/issues/28)
20+
21+
### Miscellany
22+
23+
- Add a script named `setup_dev.py` for the convenience to setup pdm for development. [#29](https://github.com/frostming/pdm/issues/29)
24+
25+
126
Release v0.1.2 (2020-02-09)
227
---------------------------
328

news/10.feature

-1
This file was deleted.

news/11.bugfix

-1
This file was deleted.

news/13.feature

-1
This file was deleted.

news/19.feature

-1
This file was deleted.

news/28.dep

-1
This file was deleted.

news/29.misc

-1
This file was deleted.

news/33.feature

-1
This file was deleted.

news/36.feature

-1
This file was deleted.

news/9.feature

-1
This file was deleted.

pdm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)