tide/CHANGELOG.md

592 lines
20 KiB
Markdown
Raw Normal View History

2020-09-17 00:23:05 +03:00
# Changelog
2023-10-04 07:10:30 +03:00
## [v6.0.0][] (Oct 03 2023)
### Features
- Add transient prompt setting, which automatically collapses old prompts for more condensed scrollback
- Add automatic configuration, which lets users automate the configuration wizard
- Add `tide reload` subcommand, to re-initialize the prompt without requiring a new shell session
2023-10-04 07:12:16 +03:00
- Replace `virtual_env` item with a new and improved `python` item
2023-10-04 07:14:25 +03:00
- Replace `chruby` item with a new and improved `ruby` item ([#437][] - @cmer)
2023-10-04 07:10:30 +03:00
- Extensive use of `string match` variable setting for minor speedups
- Reduce globbing in `pwd` item, which can be costly on slow filesystems
2023-07-06 22:40:39 +03:00
## [v5.6.0][] (Jul 04 2023)
2023-03-28 06:28:03 +03:00
### Features
- Display toolbox name when in a toolbox ([#343][])
- Add distrobox item ([#337][] - @daudix-UFO)
- Add pulumi item ([#335][] - @devansh08)
- Add elixir Item ([#373] - @aselder)
- Git branch truncation has reverted to keeping the beginning
- Use `set tide_git_truncation_strategy l` to keep the end instead
2023-07-05 06:45:16 +03:00
- Add direnv item ([#398] - @branchvincent)
- Never truncate directories to just a dot ([#399])
2023-03-28 06:28:03 +03:00
### Bug fixes
- Fix an error message when `git status` produces a huge amount of information ([#394][])
2022-09-15 03:58:22 +03:00
## [v5.5.1][] (Sep 14 2022)
### Bug fixes
- Fix errors when in weird directories like `has spaces` or `--has dashes` ([#346][])
2022-09-05 21:30:56 +03:00
## [v5.5.0][] (Sep 5 2022)
2022-09-05 20:12:56 +03:00
### Features
- Add crystal language item ([#322][] - @rrevi)
2022-09-05 21:30:56 +03:00
- Tide now looks in parent directories for special files, such as when displaying tool versions ([#323][])
2022-09-05 20:12:56 +03:00
- Tide now truncates the beginning of git branch names instead of the end
- A new variable, `tide_context_hostname_parts` lets you choose how many parts of the hostname, split on dots, to show. For example, if your hostname is `foo.bar.baz`:
- With `set tide_context_hostname_parts 5` you would see `user@foo.bar.baz`
- With `set tide_context_hostname_parts 1` you would see `user@foo` (this is the new default)
- With `set tide_context_hostname_parts 0` you would see `user`
2022-09-05 20:12:56 +03:00
### Bug fixes
2022-09-07 03:24:19 +03:00
- Display the correct versions of tools when PATH has been altered, e.g. by nvm ([#303][], [#330][] - @9999years)
2022-09-05 20:12:56 +03:00
2022-07-30 00:56:37 +03:00
## [v5.4.0][] (Jul 29 2022)
2022-06-15 18:41:11 +03:00
### Features
- Add nix_shell item ([#305][] - @oati)
- vi_mode
- insert mode is now configurable
- better defaults inspired by spacevim
2022-06-23 21:42:36 +03:00
- Check for problems on installation, e.g. old Fish version
2022-07-30 00:56:37 +03:00
- Use the new `EUID` variable in Fish 3.5 to more accurately detect elevated privileges
- Various performance improvements
2022-06-15 18:41:11 +03:00
### Bug fixes
- The first pwd segment is no longer highlighted as anchored. It was already not functionally anchored.
2022-05-02 20:42:38 +03:00
## [v5.3.0][] (May 02 2022)
### Features
- Support multiple 'default' contexts for Docker ([#283][] - @halostatue)
- Add aws item ([#293][] - @okravtsov)
- Add os icons for RHEL, Android, and Windows ([#288][], [#289][], [#295][], - @jose1711)
### Bug fixes
- Fix bug where git submodule information would not display ([#290][])
2022-04-13 00:40:40 +03:00
## [v5.2.2][] (Apr 12 2022)
### Bug fixes
- _Actually_ fix the bug with detection of opensuse ([#277][])
2022-04-11 00:04:35 +03:00
## [v5.2.1][] (Apr 10 2022)
### Bug fixes
- Fix bug with detection of opensuse ([#277][])
2022-04-08 00:41:28 +03:00
## [v5.2.0][] (Apr 07 2022)
### Features
- Add branding colors to os logos when in rainbow mode ([#220][])
2022-04-03 23:29:17 +03:00
## [v5.1.2][] (Apr 03 2022)
### Bug fixes
- Fix extra space on single line lean ([#274][])
2022-04-02 00:04:48 +03:00
## [v5.1.1][] (Apr 01 2022)
### Bug fixes
- Fix java item for old jdks ([#271][])
2022-04-01 06:34:02 +03:00
## [v5.1.0][] (Mar 31 2022)
2021-11-04 07:37:30 +03:00
### Bug fixes
- Use `string length --visible` to allow for emojis in the prompt ([#134][])
2022-04-01 06:34:02 +03:00
- Only replace `$HOME` with `~` if at beginning of PWD ([#250][])
- Repaint prompt when `$COLUMNS` changes ([#254][])
2021-11-04 07:37:30 +03:00
### Features
- New items
- `private_mode` ([#157][])
- `terraform` ([#203][] - @radek-sprta)
- `toolbox` ([#211][])
2022-04-01 06:34:02 +03:00
- `docker`, disabled by default ([#231][] - @Crocmagnon)
2022-04-01 06:29:54 +03:00
- `java` ([#244][] - @cr-mitmit)
2021-11-04 08:08:47 +03:00
- Don't require pressing enter for each menu in configuration wizard ([#187][] - @branchvincent)
- Truncate git branches/tags when they get too long ([#221][])
2021-11-04 07:37:30 +03:00
- Performance improvements
2021-11-04 08:08:47 +03:00
- Cache variables once on fish startup
2021-11-04 08:16:21 +03:00
- Use `read` instead of command substitution when possible
2021-11-04 07:37:30 +03:00
- Combine command substitutions
2022-04-01 06:29:54 +03:00
- Some other, extremely tiny, extremely evil speed boosts
- Improve `bug-report` command
- Add fish startup time
- Add fisher plugins
2021-11-04 07:37:30 +03:00
2021-08-14 02:09:45 +03:00
## [v5.0.1][] (Aug 13 2021)
2021-08-14 02:06:16 +03:00
### Bug fixes
- Fixed a bug which caused the prompt to not appear immediately in new shells ([#171][])
- Fixed a bug where `tide_context_color_root` was not correctly set
2021-08-13 20:41:03 +03:00
## [v5.0.0][] (Aug 11 2021)
2021-06-16 07:10:01 +03:00
2021-07-18 08:03:40 +03:00
### Deprecations/Warnings
2021-08-12 00:54:30 +03:00
- `main` is now a development branch. Users should instead install from version tags
- e.g. `fisher install ilancosman/tide@v5`
2021-07-18 08:03:40 +03:00
- Variable naming scheme has been overhauled, some items have been renamed ([#105][])
2021-06-16 07:10:01 +03:00
### Features
2021-07-20 07:40:36 +03:00
- Run pwd after all other items, which allows it to precisely react to prompt length ([#131][])
2021-07-08 23:15:40 +03:00
- `git` item improvements
- Display git tag when available ([#154][])
- Add special characters to indicate git tags and shas ([#154][])
- Add git icon ([#154][])
- Add changing background color in rainbow style ([#163][])
2021-07-20 07:40:36 +03:00
- New items
- `shlvl` ([#156][] - @kidonng)
- `go` ([#174][] - @dr-emacs)
- `kubectl` ([#178][] - @branchvincent)
2021-08-12 00:54:30 +03:00
- `node` item has replaced `nvm` item ([#181][] - @branchvincent)
2021-07-08 23:15:40 +03:00
- Display pipenv virtual environments better in `virtual_env` item.
- Performance improvements
2021-06-16 07:10:01 +03:00
### Bug fixes
- Check for `python3` in addition to `python` before removing virtual_env item ([#162][])
2021-07-08 23:15:40 +03:00
- Don't set `fish_term24bit`, which was messing up colors
2021-06-16 07:10:01 +03:00
2021-04-15 00:42:12 +03:00
## [v4.3.4][] (Apr 14 2021)
- Git item now works correctly in bare git repositories ([#145][])
- Git item now actually works in `.git` directory, and added tests to make sure
- Made `tide bug-report` more powerful and also check for oh-my-fish on the user's machine
2021-04-11 19:42:54 +03:00
## [v4.3.3][] (Apr 11 2021)
### Bug fixes
- Git item now works correctly in `.git` directory and in submodules ([#138][])
- Vi mode prompt char will display correct `$status` ([#126][])
- `alt+arrow` directory switching will work as before ([#139][])
- Avoid killing user's background jobs
2021-03-26 21:37:52 +03:00
## [v4.3.2][] (Mar 26 2021)
### Bug fixes
- Fixed a bug where git staged/dirty counters wouldn't display
- Use `$status` instead of `$pipestatus[-1]` to account for the `not` command.
- Safer fix for the commandline not highlighting bug ([#130][])
2021-03-25 08:03:21 +03:00
## [v4.3.1][] (Mar 24 2021)
### Bug fixes
- Fixed a bug where the commandline wouldn't highlight on startup ([#130][])
2021-03-22 20:23:18 +03:00
## [v4.3.0][] (Mar 22 2021)
### Features
- Remove on startup items that the user doesn't have a required tool for
- Always add a space after the prompt, even without `prompt_char` item ([#129][])
### Bug fixes
- Fix pwd markers which had been broken for a while
- Don't error when the left prompt is too long ([#121][] - @mfossen)
- Fix multi-line prompt when there are no items on the second line
### CI/Testing
- Use mega-linter instead of super-linter
- Fix bug in release action
2021-03-04 22:54:18 +03:00
## [v4.2.0][] (Mar 04 2021)
### Features
- Add PHP item ([#91][])
- Add chruby item ([#100][])
### Bug fixes
- Load fish_prompt only if session is interactive ([#107][] - @chvolkmann)
- Make virtual_env item smarter in avoiding generic names ([#97][])
### Internal
- Updated code for Fish 3.2.0
- Refactor printing logic, much faster now ([#111][])
- Use builtin `disown` instead of function, small speed increase
- Don't even create `fish_mode_prompt` function, tiny speed improvement
### CI/Testing
- Add syntax checking for Fish
- Add format checking for Fish
- Add PHP item tests
- Add chruby item tests
2021-02-23 01:36:36 +03:00
## [v4.1.1][] (Feb 22 2021)
### Deprecations/Warnings
- Tide v4.1.1 will be the last version to support Fish 3.1.2
### Bug fixes
- Fixed bug where `cmd_duration` and `context` items were being removed from the user's items list
- Support `toor` and `Administrator` in context item
### Documentation
- Moved the documentation back to the Wiki
- Added an FAQ ([#96][])
- Added a Custom Items guide
2021-02-21 01:14:39 +03:00
## [v4.1.0][] (Feb 20 2021)
2021-02-21 01:26:17 +03:00
### Features
2021-02-21 01:14:39 +03:00
- Add `tide bug-report --clean` option for debugging
- All items are now enabled by default. Items for tools that aren't installed are automatically removed.
2021-02-21 01:26:17 +03:00
### Bug fixes
2021-02-21 01:14:39 +03:00
- Avoid parsing directories as flags ([#88][])
- Don't error if in .git directory of git repo
2021-02-21 01:26:17 +03:00
### CI/Testing
2021-02-21 01:14:39 +03:00
- Add new release action to reduce manual labor
- Add nvm, git, and time item tests
- Add truncate to unique and markers to PWD test
2021-02-03 21:21:42 +03:00
## [v4.0.0][] (Feb 03 2021)
### Features
- Add native git solution; 15 to 50% faster than `fish_git_prompt`.
The `git_prompt` item has been renamed to `git`. ([#75][])
- Remove Pure style, redundant now that Tide is async ([#77][])
2021-03-05 04:00:12 +03:00
- Add 16 color option. Lets users customize Tide's colors through the terminal palette,
2021-02-03 21:21:42 +03:00
which was one of the attractions of Pure style. ([#79][])
### Bug fixes
- Remove `seq`, fixes errors when in macOS root
### CI/Testing
- Use Littlecheck instead of Fishtape
- Test on macOS as well as Ubuntu
### Internal
- The menu code is significantly shorter
- A bunch of other small improvements, mostly because we removed `fish_git_prompt`
2021-03-05 04:00:12 +03:00
- Moved the resources directory into a separate repo,
2021-02-03 21:21:42 +03:00
makes installing/updating Tide much faster.
2021-01-13 03:03:13 +03:00
## [v3.2.0][] (Jan 12 2021)
2021-02-03 20:43:05 +03:00
### Features
2021-01-13 03:03:13 +03:00
- New pwd features:
- Markers - If a directory contains these files/directories, it will be anchored
- Truncate to unique - Truncate directories to their shortest unique identifier, i.e no other directories match
2021-02-03 20:43:05 +03:00
### Bug fixes
2021-01-13 03:03:13 +03:00
- Fix `_tide_decolor` for linux and tmux TERMs ([#66][])
- Close stdout in background process, prompt feels super smooth now
- Ensure prompt variables are erased after uninstall ([#69][])
- Don't error if detect_os file doesn't have the specified key
2021-01-01 08:20:26 +03:00
## [v3.1.0][] (Dec 31 2020)
### Bug fixes
- Remove prompt cancel handling. It helped on Linux but hurt on MacOS.
- Refresh prompt when right prompt changes ([#59][])
- Set color to normal at end of prompt ([#63][] - @peng1999)
- Allow for installation into non-standard locations ([#65][] - @vamega)
2020-12-23 06:56:20 +03:00
## [v3.0.0][] (Dec 22 2020)
### Features
- Prompt now renders asynchronously ([#15][])
- Prompt now redraws accurately when the line is cancelled ([#53][])
2020-11-20 06:23:57 +03:00
## [v2.5.0][] (Nov 19 2020)
### Features
- Switched installation method to fisher
- Added an icons menu to the configuration wizard ([#20][])
### Bug fixes
- Fixed `tide install --unattended` erroring 404 ([#30][])
- Fixed tab selection menu occasionally being colorized ([#33][])
- Fixed os detection erroring if `/etc/lsb-release` did not exist ([#40][] - @Shadow53)
- Switched to `mktemp` instead of assuming that `/tmp` will exist ([#41][] - @Shadow53)
- Erase all `_tide_*` "private" functions on uninstall ([#43][] - @jorgebucaran)
- Moved `fish_right_prompt` to it's own file to prevent errors after uninstall ([#45][] - @jorgebucaran)
### Documentation
- Added a brief explanation for how to modify variables ([#29][] - @Epse)
- Fixed a broken link to the `fish_git_prompt` documentation ([#32][] - @PatrickF1)
### CI/Testing
- Minor improvements to CI
- Improved test suite
- Added function mocking
- Added rust item test
2020-09-28 04:50:15 +03:00
2020-09-22 03:45:57 +03:00
## [v2.4.0][] (Sep 21 2020)
### Features
2020-09-28 04:50:15 +03:00
- Added number of jobs option ([#5][])
- Added `nvm` item ([#23][])
- Added support for lsb-release in `detect_os` for non systemd distros ([#24][])
- Added `vi_mode` item and `prompt_char_vi` variables for vi keybindings users ([#26][])
2020-09-22 03:45:57 +03:00
### Bug fixes
2020-09-28 04:50:15 +03:00
- Added git dirty state to pure style ([#18][])
- Fixed bug when pwd started with / ([#25][])
2020-09-22 03:45:57 +03:00
2020-09-17 00:23:05 +03:00
## [v2.3.0][] (Aug 20 2020)
- Add question issue template
- Combine CI workflows
- Lots of new unit tests
- Add `context_always_display` option
- Add Rust item
2020-12-23 06:56:20 +03:00
## [v2.2.0][] (Aug 02 2020)
2020-09-17 00:23:05 +03:00
- Actions
2020-09-28 04:56:26 +03:00
- Add [super-linter][] action to lint markdown and yaml.
- Add [prettier action][] to format markdown and yaml.
2020-09-17 00:23:05 +03:00
- Rename `master` to `main`
## [v2.1.0][] (Jul 29 2020)
- Fix bug with `basename` on macOS
- Minor edits to README
- New `os` item
- Displays a 1 character icon representing your os/distro
- Falls back to a similar distro of linux if yours isn't recognized
## [v2.0.0][] (Jul 26 2020)
- Add Powerline support!
- Item separators
- Background colors
- Add continuous integration
- Update documentation
- Move configuration to wiki
- Beautify the readme
## [v1.5.0][] (Jun 28 2020)
- Many more pure prompt menus
- Add stash state to pure
- Add virtual_env item
## [v1.4.0][] (Jun 17 2020)
- Add pure support
## [v1.3.2][] (Jun 13 2020)
- Fix / not showing at start of pwd
2020-12-23 06:56:20 +03:00
## [v1.3.1][] (Jun 08 2020)
2020-09-17 00:23:05 +03:00
- Fix pwd not displaying in unwritable directories
2020-12-23 06:56:20 +03:00
## [v1.3.0][] (Jun 06 2020)
2020-09-17 00:23:05 +03:00
- Massive speed increase
- Greater than 2x in most cases
- Run code only when relevant variables change
2020-12-23 06:56:20 +03:00
## [v1.2.0][] (Jun 05 2020)
2020-09-17 00:23:05 +03:00
- Add pwd anchors
- Bold directories that don't get truncated
2020-09-28 04:56:26 +03:00
- Options: first, last, and git
2020-09-17 00:23:05 +03:00
- Add recommended font to readme
- Add contributing guide and code of conduct
## [v1.1.2][] (May 24 2020)
2020-09-28 04:56:26 +03:00
- Fix `tide configure` making fish_prompt larger and larger
2020-09-17 00:23:05 +03:00
## [v1.1.1][] (May 24 2020)
2020-09-28 04:56:26 +03:00
- `tide configure` now also resets fish_prompt to default
2020-09-17 00:23:05 +03:00
## [v1.1.0][] (May 24 2020)
- Pwd adds a second letter when truncating a directory with a dot in front
- Wizard restores default configuration of variables
- Tide command now has completions for subcommands
- Readme now uses a git.io vanity link
## [v1.0.0][] (May 20 2020)
- First release
2020-09-28 04:50:15 +03:00
[#5]: https://github.com/IlanCosman/tide/issues/5
2020-12-23 06:56:20 +03:00
[#15]: https://github.com/IlanCosman/tide/issues/15
2020-09-28 04:50:15 +03:00
[#18]: https://github.com/IlanCosman/tide/issues/18
2020-11-20 06:23:57 +03:00
[#20]: https://github.com/IlanCosman/tide/issues/20
2020-09-28 04:50:15 +03:00
[#23]: https://github.com/IlanCosman/tide/issues/23
[#24]: https://github.com/IlanCosman/tide/issues/24
[#25]: https://github.com/IlanCosman/tide/issues/25
[#26]: https://github.com/IlanCosman/tide/issues/26
2020-11-20 06:23:57 +03:00
[#29]: https://github.com/IlanCosman/tide/issues/29
[#30]: https://github.com/IlanCosman/tide/issues/30
[#32]: https://github.com/IlanCosman/tide/issues/32
[#33]: https://github.com/IlanCosman/tide/issues/33
[#40]: https://github.com/IlanCosman/tide/issues/40
[#41]: https://github.com/IlanCosman/tide/issues/41
[#43]: https://github.com/IlanCosman/tide/issues/43
[#45]: https://github.com/IlanCosman/tide/issues/45
2020-12-23 06:56:20 +03:00
[#53]: https://github.com/IlanCosman/tide/issues/53
2021-01-01 08:20:26 +03:00
[#59]: https://github.com/IlanCosman/tide/issues/59
[#63]: https://github.com/IlanCosman/tide/issues/63
[#65]: https://github.com/IlanCosman/tide/issues/65
2021-01-13 03:03:13 +03:00
[#66]: https://github.com/IlanCosman/tide/issues/66
[#69]: https://github.com/IlanCosman/tide/issues/69
2021-02-03 21:21:42 +03:00
[#75]: https://github.com/IlanCosman/tide/issues/75
[#77]: https://github.com/IlanCosman/tide/issues/77
[#79]: https://github.com/IlanCosman/tide/issues/79
2021-02-23 01:36:36 +03:00
[#88]: https://github.com/IlanCosman/tide/issues/88
2021-03-04 22:54:18 +03:00
[#91]: https://github.com/IlanCosman/tide/issues/91
2021-02-23 01:36:36 +03:00
[#96]: https://github.com/IlanCosman/tide/issues/96
2021-03-04 22:54:18 +03:00
[#97]: https://github.com/IlanCosman/tide/issues/97
[#100]: https://github.com/IlanCosman/tide/issues/100
2021-11-04 07:37:30 +03:00
[#105]: https://github.com/IlanCosman/tide/issues/105
2021-03-04 22:54:18 +03:00
[#107]: https://github.com/IlanCosman/tide/issues/107
[#111]: https://github.com/IlanCosman/tide/issues/111
2021-03-22 20:23:18 +03:00
[#121]: https://github.com/IlanCosman/tide/issues/121
2021-04-11 19:42:54 +03:00
[#126]: https://github.com/IlanCosman/tide/issues/126
2021-03-22 20:23:18 +03:00
[#129]: https://github.com/IlanCosman/tide/issues/129
2021-03-25 08:03:21 +03:00
[#130]: https://github.com/IlanCosman/tide/issues/130
2021-06-16 07:13:08 +03:00
[#131]: https://github.com/IlanCosman/tide/issues/131
2021-11-04 07:37:30 +03:00
[#134]: https://github.com/IlanCosman/tide/issues/134
2021-04-11 19:42:54 +03:00
[#138]: https://github.com/IlanCosman/tide/issues/138
[#139]: https://github.com/IlanCosman/tide/issues/139
2021-04-15 00:42:12 +03:00
[#145]: https://github.com/IlanCosman/tide/issues/145
2021-06-16 07:13:08 +03:00
[#154]: https://github.com/IlanCosman/tide/issues/154
2021-07-08 23:23:29 +03:00
[#156]: https://github.com/IlanCosman/tide/issues/156
2021-11-04 07:37:30 +03:00
[#157]: https://github.com/IlanCosman/tide/issues/157
2021-06-16 07:13:08 +03:00
[#162]: https://github.com/IlanCosman/tide/issues/162
2021-07-08 23:17:40 +03:00
[#163]: https://github.com/IlanCosman/tide/issues/163
[#171]: https://github.com/IlanCosman/tide/issues/171
2021-07-18 08:03:40 +03:00
[#174]: https://github.com/IlanCosman/tide/issues/174
2021-07-20 07:40:36 +03:00
[#178]: https://github.com/IlanCosman/tide/issues/178
2021-08-12 00:54:30 +03:00
[#181]: https://github.com/IlanCosman/tide/issues/181
2021-11-04 08:08:47 +03:00
[#187]: https://github.com/IlanCosman/tide/issues/187
2021-11-04 07:37:30 +03:00
[#203]: https://github.com/IlanCosman/tide/issues/203
[#211]: https://github.com/IlanCosman/tide/issues/211
2022-04-08 00:41:28 +03:00
[#220]: https://github.com/IlanCosman/tide/issues/220
2021-11-04 08:08:47 +03:00
[#221]: https://github.com/IlanCosman/tide/issues/221
2022-04-01 06:29:54 +03:00
[#231]: https://github.com/IlanCosman/tide/issues/231
[#244]: https://github.com/IlanCosman/tide/issues/244
[#250]: https://github.com/IlanCosman/tide/issues/250
[#254]: https://github.com/IlanCosman/tide/issues/254
2022-04-02 00:04:48 +03:00
[#271]: https://github.com/IlanCosman/tide/issues/271
2022-04-03 23:29:17 +03:00
[#274]: https://github.com/IlanCosman/tide/issues/274
2022-04-11 00:04:35 +03:00
[#277]: https://github.com/IlanCosman/tide/issues/277
2022-05-02 20:42:38 +03:00
[#283]: https://github.com/IlanCosman/tide/issues/283
[#288]: https://github.com/IlanCosman/tide/issues/288
[#289]: https://github.com/IlanCosman/tide/issues/289
[#290]: https://github.com/IlanCosman/tide/issues/290
[#293]: https://github.com/IlanCosman/tide/issues/293
[#295]: https://github.com/IlanCosman/tide/issues/295
2022-09-07 03:24:19 +03:00
[#303]: https://github.com/IlanCosman/tide/issues/303
2022-06-15 18:41:11 +03:00
[#305]: https://github.com/IlanCosman/tide/issues/305
2022-09-05 21:30:56 +03:00
[#322]: https://github.com/IlanCosman/tide/issues/322
[#323]: https://github.com/IlanCosman/tide/issues/323
2022-09-07 03:24:19 +03:00
[#330]: https://github.com/IlanCosman/tide/issues/330
2023-03-28 06:28:03 +03:00
[#335]: https://github.com/IlanCosman/tide/pull/335
[#337]: https://github.com/IlanCosman/tide/pull/337
[#343]: https://github.com/IlanCosman/tide/pull/343
2022-09-15 03:58:22 +03:00
[#346]: https://github.com/IlanCosman/tide/issues/346
2023-03-28 06:28:03 +03:00
[#373]: https://github.com/IlanCosman/tide/pull/373
[#394]: https://github.com/IlanCosman/tide/issues/394
2023-07-05 06:45:16 +03:00
[#398]: https://github.com/IlanCosman/tide/pull/398
[#399]: https://github.com/IlanCosman/tide/issues/399
2020-09-28 04:56:26 +03:00
[prettier action]: https://github.com/actionsx/prettier
[super-linter]: https://github.com/github/super-linter
2020-09-17 00:23:05 +03:00
[v1.0.0]: https://github.com/IlanCosman/tide/tree/v1.0.0
[v1.1.0]: https://github.com/IlanCosman/tide/tree/v1.1.0
[v1.1.1]: https://github.com/IlanCosman/tide/tree/v1.1.1
[v1.1.2]: https://github.com/IlanCosman/tide/tree/v1.1.2
[v1.2.0]: https://github.com/IlanCosman/tide/tree/v1.2.0
[v1.3.0]: https://github.com/IlanCosman/tide/tree/v1.3.0
[v1.3.1]: https://github.com/IlanCosman/tide/tree/v1.3.1
[v1.3.2]: https://github.com/IlanCosman/tide/tree/v1.3.2
[v1.4.0]: https://github.com/IlanCosman/tide/tree/v1.4.0
[v1.5.0]: https://github.com/IlanCosman/tide/tree/v1.5.0
[v2.0.0]: https://github.com/IlanCosman/tide/tree/v2.0.0
[v2.1.0]: https://github.com/IlanCosman/tide/tree/v2.1.0
[v2.2.0]: https://github.com/IlanCosman/tide/tree/v2.2.0
[v2.3.0]: https://github.com/IlanCosman/tide/tree/v2.3.0
2020-09-22 03:45:57 +03:00
[v2.4.0]: https://github.com/IlanCosman/tide/tree/v2.4.0
2020-11-20 06:23:57 +03:00
[v2.5.0]: https://github.com/IlanCosman/tide/tree/v2.5.0
2020-12-23 06:56:20 +03:00
[v3.0.0]: https://github.com/IlanCosman/tide/tree/v3.0.0
2021-01-01 08:20:26 +03:00
[v3.1.0]: https://github.com/IlanCosman/tide/tree/v3.1.0
2021-01-13 03:03:13 +03:00
[v3.2.0]: https://github.com/IlanCosman/tide/tree/v3.2.0
2021-02-03 21:21:42 +03:00
[v4.0.0]: https://github.com/IlanCosman/tide/tree/v4.0.0
2021-02-21 01:26:17 +03:00
[v4.1.0]: https://github.com/IlanCosman/tide/tree/v4.1.0
2021-02-23 01:36:36 +03:00
[v4.1.1]: https://github.com/IlanCosman/tide/tree/v4.1.1
2021-03-04 23:47:11 +03:00
[v4.2.0]: https://github.com/IlanCosman/tide/tree/v4.2.0
2021-03-22 20:23:18 +03:00
[v4.3.0]: https://github.com/IlanCosman/tide/tree/v4.3.0
2021-03-25 08:03:21 +03:00
[v4.3.1]: https://github.com/IlanCosman/tide/tree/v4.3.1
2021-03-27 06:19:33 +03:00
[v4.3.2]: https://github.com/IlanCosman/tide/tree/v4.3.2
2021-04-11 19:45:31 +03:00
[v4.3.3]: https://github.com/IlanCosman/tide/tree/v4.3.3
2021-04-15 00:42:12 +03:00
[v4.3.4]: https://github.com/IlanCosman/tide/tree/v4.3.4
2021-08-13 20:41:03 +03:00
[v5.0.0]: https://github.com/IlanCosman/tide/tree/v5.0.0
2021-08-14 02:09:45 +03:00
[v5.0.1]: https://github.com/IlanCosman/tide/tree/v5.0.1
2022-04-01 06:34:02 +03:00
[v5.1.0]: https://github.com/IlanCosman/tide/tree/v5.1.0
2022-04-02 00:04:48 +03:00
[v5.1.1]: https://github.com/IlanCosman/tide/tree/v5.1.1
2022-04-03 23:29:17 +03:00
[v5.1.2]: https://github.com/IlanCosman/tide/tree/v5.1.2
2022-04-08 00:41:28 +03:00
[v5.2.0]: https://github.com/IlanCosman/tide/tree/v5.2.0
2022-04-11 00:04:35 +03:00
[v5.2.1]: https://github.com/IlanCosman/tide/tree/v5.2.1
2022-04-13 00:40:40 +03:00
[v5.2.2]: https://github.com/IlanCosman/tide/tree/v5.2.2
2022-05-02 20:42:38 +03:00
[v5.3.0]: https://github.com/IlanCosman/tide/tree/v5.3.0
2022-07-30 00:56:37 +03:00
[v5.4.0]: https://github.com/IlanCosman/tide/tree/v5.4.0
2022-09-05 21:30:56 +03:00
[v5.5.0]: https://github.com/IlanCosman/tide/tree/v5.5.0
2022-09-15 03:58:22 +03:00
[v5.5.1]: https://github.com/IlanCosman/tide/tree/v5.5.1
2023-07-06 22:40:39 +03:00
[v5.6.0]: https://github.com/IlanCosman/tide/tree/v5.6.0
2023-10-04 07:16:59 +03:00
[v6.0.0]: https://github.com/IlanCosman/tide/tree/v6.0.0