Skip to content

Commit b822822

Browse files
committed
Tag v1.15.0 (remove click dependency in favor of argparse, #400)
1 parent a225da1 commit b822822

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGES

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
1515
// Usage: vcspull@next sync [config]
1616
```
1717

18-
## vcspull v1.15.x (unreleased)
18+
## vcspull v1.16.x (unreleased)
1919

2020
- _Add your latest changes from PRs here_
2121

22+
## vcspull v1.15.0 (2022-10-02)
23+
2224
**Maintenance release, no features or fixes**
2325

2426
### Internal
2527

26-
- Move from click to :mod:{argparse}
28+
- Move from click to {mod}`argparse` (#400)
2729

2830
Click was more difficult to control and workwith, ironically.
2931

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vcspull"
3-
version = "1.15.0a0"
3+
version = "1.15.0"
44
description = "Manage and sync multiple git, mercurial, and svn repos"
55
license = "MIT"
66
authors = ["Tony Narlock <[email protected]>"]

src/vcspull/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "vcspull"
22
__package_name__ = "vcspull"
33
__description__ = "Manage and sync multiple git, mercurial, and svn repos"
4-
__version__ = "1.15.0a0"
4+
__version__ = "1.15.0"
55
__author__ = "Tony Narlock"
66
__github__ = "https://github.com/vcs-python/vcspull"
77
__docs__ = "https://vcspull.git-pull.com"

0 commit comments

Comments
 (0)