diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..9f56e68 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1 @@ +0.1.0 2024-07-07: Added configuration parsing diff --git a/README.md b/README.md index 34e48bb..8fb3e98 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # tori -tori is a configuration management and system replication tool designed with portability in mind. +tori is a tool to track your personal systems' configurations and replicate them. -You can find documentation in the [docs](docs) directory. +If you'd like a more detailed description of what it is, its purpose, origins and goals, see the [announcement blog post](https://blog.jutty.dev/posts/introducing-tori.html). + +You can find documentation in the [docs](docs) directory: +- [Usage documentation](docs/usage) +- [Development documentation](docs/development) diff --git a/src/tori b/src/tori index 63c6dc4..96d7932 100755 --- a/src/tori +++ b/src/tori @@ -2,7 +2,7 @@ main() { # paths - VERSION="0.0.4 2024-06-30" + VERSION="0.1.0 2024-07-07" TORI_ROOT="$HOME/.local/share/tori" CONFIG_ROOT="$HOME/.config/tori" TMP_DIR="/tmp/tori"