Skip to content

Commit

Permalink
docs: add changelog for next version
Browse files Browse the repository at this point in the history
  • Loading branch information
kostya-zero committed Jun 10, 2024
1 parent e807743 commit 69e167c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

## Next

TBD
- Now the Tesuto source code is not split into multiple projects, but is located in a single project.
- Completely changed the structure of the project in Tesuto. More details in this README section.
- Completely remodeled runner.
- The program will now be run through a shell depending on the operating system (`cmd` on Windows and `bash` on other OS). This option cannot be configured yet.
- The scenarios have been deleted.
- You can no longer add new job to a project via the `add` command.
- Added `require` field: you can specify which programs are needed to execute this project.
- Added `list` command to display all available jobs.
- Added `quite` option for steps to disable program output.
- Improvements to the code to improve performance.

## v0.1.1

Expand Down
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ homepage = "https://github.com/kostya-zero/tesuto"
version = "0.2.0"
edition = "2021"

[profile.release]
opt-level = 3
codegen-units = 1
lto = true
debug = false

[dependencies]
clap = "4.5.1"
dialoguer = "0.11.0"
Expand Down

0 comments on commit 69e167c

Please sign in to comment.