Skip to content

Commit 60fd31b

Browse files
committed
Tag v0.30.0 (#443, #463)
1 parent 5dc3d0d commit 60fd31b

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGES

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ To install the unreleased libvcs version, see
99
$ pip install --user --upgrade --pre libvcs
1010
```
1111

12-
## libvcs 0.30.x (unreleased)
12+
## libvcs 0.31.x (unreleased)
1313

1414
- _Notes on upcoming releases will be added here_
1515

1616
<!-- Maintainers, insert changes / features for the next release here -->
1717

18+
## libvcs 0.30.0 (2024-06-18)
19+
1820
### New features
1921

2022
### urls: AWS CodeCommit support (#443)

MIGRATION

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ _Notes on the upcoming release will be added here_
2424

2525
<!-- Maintainers, insert migration notes for the next release here -->
2626

27+
## libvcs 0.30.0 (2024-06-18)
28+
29+
### URLs: Variable renamings and moves (#463)
30+
31+
- `RE_PIP_REV` moved from `libvcs.url.git` to `libvcs.url.constants`.
32+
- `RE_PATH` has changed:
33+
34+
- The pattern for user matching (e.g., `git@`) has been extracted to `RE_USER`.
35+
- `RE_PATH` and `SCP_REGEX` (now `RE_SCP`) no longer include user regex pattern
36+
- Existing patterns now use `RE_USER` explicitly.
37+
38+
- `REGEX_SCP` renamed to `RE_SCP` for consistency.
39+
2740
## libvcs 0.20.0 (2022-10-31)
2841

2942
### URLs: Mapping now class attributes (#433)

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 = "libvcs"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
description = "Lite, typed, python utilities for Git, SVN, Mercurial, etc."
55
license = "MIT"
66
authors = ["Tony Narlock <tony@git-pull.com>"]

src/libvcs/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__title__ = "libvcs"
44
__package_name__ = "libvcs"
55
__description__ = "Lite, typed, python utilities for Git, SVN, Mercurial, etc."
6-
__version__ = "0.29.0"
6+
__version__ = "0.30.0"
77
__author__ = "Tony Narlock"
88
__github__ = "https://github.com/vcs-python/libvcs"
99
__docs__ = "https://libvcs.git-pull.com"

0 commit comments

Comments
 (0)