Skip to content

Commit

Permalink
Fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dmerejkowsky committed Jan 17, 2024
1 parent 77f143f commit 5aac839
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Changelog
* Atomic pushes, introduced in version 6.5, are not supported
everywhere. Starting with this release, you can now set
``atomic_push=false`` in the config file to use the old behavior
(pushing the branch and the tag separately). Inital patch by @mlongtin0
(pushing the branch and the tag separately). Initial patch by @mlongtin0


6.10.0 (2023-05-21)
Expand Down Expand Up @@ -37,7 +37,7 @@ Other
6.8.0 (2022-03-27)
------------------

* Allow usage of ``python -m tbump`` in addtion to just ``tbump``
* Allow usage of ``python -m tbump`` in addition to just ``tbump``

6.7.0 (2021-12-22)
------------------
Expand Down
2 changes: 1 addition & 1 deletion tbump/git_bumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_tag_name(self, new_version: str) -> str:
def set_config(self, config: Config) -> None:
self.tag_template = config.git_tag_template
self.message_template = config.git_message_template
# atomic_push is True by default, and must be explicitely
# atomic_push is True by default, and must be explicitly
# disabled in the configuration:
if not config.atomic_push:
self.atomic_push = False
Expand Down
2 changes: 1 addition & 1 deletion tbump/test/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def test_end_to_end_using_tbump_toml_no_atomic(
doc["git"]["atomic_push"] = False # type: ignore[index]
tbump_toml.write_text(tomlkit.dumps(doc))
run_git(test_repo, "add", ".")
run_git(test_repo, "commit", "--message", "tbump: do not use atomtic push")
run_git(test_repo, "commit", "--message", "tbump: do not use atomic push")

_, previous_commit = run_git_captured(test_repo, "rev-parse", "HEAD")
run_tbump(
Expand Down

0 comments on commit 5aac839

Please sign in to comment.