Skip to content

Commit 54609b4

Browse files
committed
Release 1.23.0
1 parent 67aeaf7 commit 54609b4

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Note: this changelog only lists feature additions, not bugfixes. For details on those, see the Git history.
22

3+
- v1.23
4+
- Switch default output to only show actions taken
5+
- Add support for `--dry-run`
6+
- Add ability to specify plugins in config file
37
- v1.22
48
- Add support for creating hardlinks in `link`
59
- Add ability to pass multiple config files

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repository = "https://github.com/anishathalye/dotbot.git"
3232
issues = "https://github.com/anishathalye/dotbot/issues"
3333

3434
[tool.hatch.version]
35-
path = "src/dotbot/__init__.py"
35+
path = "src/dotbot/__about__.py"
3636

3737
[tool.hatch.build.targets.sdist]
3838
exclude = [

src/dotbot/__about__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "1.23.0"

src/dotbot/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1+
from dotbot.__about__ import __version__
12
from dotbot.cli import main
23
from dotbot.plugin import Plugin
34

4-
__version__ = "1.22.0"
5-
6-
__all__ = ["main", "Plugin"]
5+
__all__ = ["main", "Plugin", "__version__"]

0 commit comments

Comments
 (0)