Skip to content

Commit

Permalink
Version 1.5.2
Browse files Browse the repository at this point in the history
- Add a cli flag named `--skip-first-run-prompt` that disables the welcome message shown on the first launch of tere, which prompts the user to update their shell configuration for proper directory changing functionality. (Thanks to Timon Schelling, Github #104)
- Update dependencies
  • Loading branch information
mgunyho committed Sep 15, 2024
2 parents ef69b8d + d124b95 commit 3873e48
Show file tree
Hide file tree
Showing 11 changed files with 366 additions and 256 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# To render parts of the built-in help screen, tere reads the README file at
# compile time and splits it at runtime by newlines \n. This breaks on Windows
# if using the default Git setting of using CR+LF instead of just LF. Here we
# specify that the README should always be checked out as LF to avoid this
# (it's simpler to do this way than to change the program logic to handle both
# CRLF and LF).

README.md text eol=lf
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Unreleased


## 1.5.2 (2024-09-15)

- Add a cli flag named `--skip-first-run-prompt` that disables the welcome message shown on the first launch of tere, which prompts the user to update their shell configuration for proper directory changing functionality. (Thanks to Timon Schelling, Github #104)
- Update dependencies

## 1.5.1 (2023-08-24)

- Fix output formatting when exiting the app without cd, or when canceling the first run prompt (Thanks @orhun, Github #91, #92)
Expand Down
Loading

2 comments on commit 3873e48

@timon-schelling
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mgunyho I think this should be a minor release, because it adds features not just bug fixes.

@mgunyho
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is a fair point, I thought that it's such a minor feature that I'll just bump the smallest version number, but now reading the rules of semver you're right, this should be 1.6.0. I'll make a new release with just the version change.

Please sign in to comment.