Skip to content

Commit 1c93494

Browse files
committed
Tag v0.0.7 - Python 3.9 required
1 parent 9d432d9 commit 1c93494

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGES

+15-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@ $ pipx install --suffix=@next g --pip-args '\--pre' --force
1515
// Usage: g@next --help
1616
```
1717

18-
## g 0.0.7 (unreleased)
18+
## g 0.0.8 (unreleased)
1919

2020
- _Notes on upcoming releases will be added here_
2121

2222
<!-- Maintainers, insert changes / features for the next release here -->
2323

24+
## g 0.0.7 (2024-12-20)
25+
26+
_Maintenance only, no bug fixes, or new features_
27+
2428
### Breaking changes (#33)
2529

2630
- Drop Python 3.8
@@ -29,6 +33,16 @@ $ pipx install --suffix=@next g --pip-args '\--pre' --force
2933

3034
Python 3.8 reached end-of-life status on October 7th, 2024 (see PEP 569).
3135

36+
### Development
37+
38+
- Aggressive automated lint fixes via `ruff` (#32)
39+
40+
via ruff v0.8.4, all automated lint fixes, including unsafe and previews were applied for Python 3.9:
41+
42+
```sh
43+
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
44+
```
45+
3246
## g 0.0.6 (2024-11-26)
3347

3448
_Maintenance only, no bug fixes, or new features_

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "g"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
description = "cli command to easily sync current directory"
55
requires-python = ">=3.9,<4.0"
66
authors = [

src/g/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__title__ = "g"
44
__package_name__ = "g"
55
__description__ = "CLI alias for your current directory's VCS command: git, svn, hg"
6-
__version__ = "0.0.6"
6+
__version__ = "0.0.7"
77
__author__ = "Tony Narlock"
88
__github__ = "https://github.com/vcs-python/g"
99
__docs__ = "https://g.git-pull.com"

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)