-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Resolves #56 I've improved the documentation for `tool-sync` in a few ways: * Rewrote README * Added a CHAGELOG * Slightly changed the CONTRIBUTING.md guide (now it requires to add new changes in the changelog) * Generated a new GIF with the new output * Increased the version to `0.2.0` I want to implement #54 and #55 before actually creating a release so the CHANGELOG will change. But those changes shouldn't affect the documentation so this one can be merged separately. ### Additional tasks - [x] Documentation for changes provided/changed - [ ] Tests added Co-authored-by: Zixuan Zhang <[email protected]>
- Loading branch information
Showing
8 changed files
with
318 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning][1]. The changelog is also | ||
available [on GitHub][2]. | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.0] — 2022-09-20 🔃 | ||
|
||
### Added | ||
|
||
* [#57](https://github.com/chshersh/tool-sync/issues/57): | ||
Adds the `install` command to install known tools | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#CLI** | ||
* [#52](https://github.com/chshersh/tool-sync/issues/52), | ||
[#73](https://github.com/chshersh/tool-sync/issues/73): | ||
Add the `default-config` command to generate the default `.tool.toml` file | ||
with the tool version and all natively supported tools | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#CLI** **#CONFIG** | ||
* [#49](https://github.com/chshersh/tool-sync/issues/49), | ||
[#63](https://github.com/chshersh/tool-sync/issues/63): | ||
Output the exact tag of the downloaded tool | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#OUTPUT** | ||
* [#32](https://github.com/chshersh/tool-sync/issues/32): | ||
Add tag option to download a specific tool version | ||
(by [@FrancisMurillo][FrancisMurillo]) | ||
**#CONFIG** | ||
* [#33](https://github.com/chshersh/tool-sync/issues/33): | ||
Better `sync` output with estimated size, installation directory and early | ||
errors | ||
(by [@chshersh][chshersh]) | ||
**#OUTPUT** | ||
* [#46](https://github.com/chshersh/tool-sync/issues/46): | ||
Support syncing `tool-sync` by `tool-sync` | ||
(by [@chshersh][chshersh]) | ||
**#CONFIG** | ||
* [#87](https://github.com/chshersh/tool-sync/issues/87): | ||
Produce statically linked binaries for linux | ||
(by [@chshersh][chshersh]) | ||
**#DX** **#CD** | ||
* [PR #73](https://github.com/chshersh/tool-sync/pull/73): | ||
Adding the pre-commit config | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#DX** | ||
* [PR #74](https://github.com/chshersh/tool-sync/pull/74): | ||
Added pull request template | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#DX** | ||
* [PR #81](https://github.com/chshersh/tool-sync/pull/81): | ||
Better CI caching | ||
(by [@chshersh][chshersh]) | ||
**#DX** **#CI** | ||
* [#83](https://github.com/chshersh/tool-sync/issues/83): | ||
Create `AssetError` and refactor `select_asset` function | ||
(by [@zixuanzhang-x][zixuanzhang-x]) | ||
**#REFACTORING** **#OUTPUT** | ||
* [#88](https://github.com/chshersh/tool-sync/issues/88): | ||
Replace custom `display()` method with `std::fmt::Display` trait implementation | ||
(by [@zixuanzhang-x][zixuanzhang-x]) | ||
**#REFACTORING** | ||
* [#98](https://github.com/chshersh/tool-sync/issues/98): | ||
Changed all formatting functions so they accept a type that implements `Display` | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#REFACTORING** | ||
* [PR #94](https://github.com/chshersh/tool-sync/pull/94): | ||
Refactor commands into separate modules | ||
(by [@chshersh][chshersh]) | ||
**#REFACTORING** | ||
|
||
### Fixed | ||
|
||
* [#54](https://github.com/chshersh/tool-sync/issues/54): | ||
Adding extra lookup path inside asset. Additionally, added a new error message for the case where multiple assets are found | ||
(by [@MitchellBerend][MitchellBerend]) | ||
**#SYNC** **#OUTPUT** | ||
|
||
## [0.1.0] — 2022-08-29 🌇 | ||
|
||
Initial release prepared by [@chshersh][chshersh]. | ||
|
||
<!-- Contributors --> | ||
|
||
[chshersh]: https://github.com/chshersh | ||
[FrancisMurillo]: https://github.com/FrancisMurillo | ||
[MitchellBerend]: https://github.com/MitchellBerend | ||
[zixuanzhang-x]: https://github.com/zixuanzhang-x | ||
|
||
<!-- Header links --> | ||
|
||
[1]: https://semver.org/ | ||
[2]: https://github.com/chshersh/tool-sync | ||
|
||
<!-- Versions --> | ||
|
||
[Unreleased]: https://github.com/chshersh/tool-sync/compare/v0.2.0...HEAD | ||
[0.2.0]: https://github.com/chshersh/tool-sync/releases/tag/v0.2.0 | ||
[0.1.0]: https://github.com/chshersh/tool-sync/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tool-sync" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Dmitrii Kovanikov <[email protected]>"] | ||
license = "MPL-2.0" | ||
description = """ | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.